// hello_world.c
#include <stdio.h>
int main(void) {
puts("Hello, world!");
return 0;
}
$ gcc hello_world.c -o hello
$ ./hello
Jan 8, 2025
// hello_world.c
#include <stdio.h>
int main(void) {
puts("Hello, world!");
return 0;
}
$ gcc hello_world.c -o hello
$ ./hello