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