Print Hello World! with C

Print Hello, World! on the screen.
Soution:
#include <stdio.h>
int main() {
   printf("Hello, World!\n");
   return 0;
}

Post a Comment

Post a Comment (0)

Previous Post Next Post