c program how to output a hello world code example
Example 1: c hello world
#include <stdio.h>
int main() {
printf("Hello, world!");
return 0;
}
Example 2: hello world c
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}