Hello World Program in C
/*
Program to Display "Hello, World!"
*/#include <stdio.h>
int main()
{
// printf function displays the content that is
* passed between the double quotes.
printf("Hello World");
return 0;
}/*
Output
Hello, World!
*/

No comments:
Post a Comment