latest Post

Your First C Program


Program :


/* First C program: Hello World */
//include information about standard library and Console Library header files
#include <stdio.h>
#include <conio.h>

// define a function named main
int main()
{
// main calls library function printf to print this sequence of characters;
//  '\n' represent the newline character
clrscr();
printf("Hello, World! \n");
getch();
return 0;
}


Output :



About Open Learning Creative

Open Learning Creative
Recommended Posts × +

0 comments:

Post a Comment

PHP Registration form using GET, POST Methods with example

Program : HTML Code <html> <head> <title>Student Info</title> </head> <body><center> ...