How to print hello world in C
This below example, will show you to how print a hello world program in c programming language.
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0; // ends the program
}
Output:
Hello World
This below example, will show you to how print a hello world program in c programming language.
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0; // ends the program
}
Output:
Hello World