how to make a hello world program in c
snippet in c
how to make a hello world program in c
user1772
#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, World!");
return 0;
}