Compile and Run a C Program
int main() { printf ("Hello, world!\n"); return (0); }
gcc t002.c
./a.out
Hello, world!