When writing programs, we usually configure the IDE and use the IDE buttons to compile.
In linux, you can compile using the command line.
The default output file name is a.out
$ gcc hello.c $ ./a.out
We can use - o to specify the output file name
$ gcc hello.c -o hello $ ./hello