c programming welcome code example
Example 1: how to make a hello world program in c
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, World!");
return 0;
}
Example 2: hello world in c
print("hello world")
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, World!");
return 0;
}
print("hello world")