The clasic “Hello World!” example in ‘C’.
You will need:
Simply compile the C code at the command prompt as follows:
$ gcc main.c -o hw
Then execute the binary executable you’ve just created:
$ hw Hello World!