Compile and link the test.c source code:
gcc goodbye.c -o goodbye
#include <stdio.h> int main() { printf("Goodbye!\n"); return(0); }
Goodbye!