chx
0
Q:

how to make a hello world program in c

#include <stdio.h>
#include <stdlib.h>

int main() {
  printf("Hello, World!");
  return 0;
}
1
#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}
1
printf("Hello Based World");
1
echo "Hello, World"
1
print("hello world")
0

New to Communities?

Join the community