C Programming Examples
1.Program to Display "Hello, World!"
#include <stdio.h>
void main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
2. C Program to Print an Integer (Entered…