Language C Tutorial

Compile and link the test.c source code:

gcc goodbye.c -o goodbye

#include 
  
int main()
{
    printf("Goodbye!\n");
    return(0);
}
Goodbye!