Compile and link the C program using gcc : gcc « Language « C Tutorial






Compile and link the test.c source code:

gcc goodbye.c -o goodbye
#include <stdio.h>
  
int main()
{
    printf("Goodbye!\n");
    return(0);
}
Goodbye!








1.19.gcc
1.19.1.Compile and link the C program using gcc