run c in terminal code example
Example 1: How to run C program using command
gcc <file-name.c> -o <output-file-name>
Example 2: how to run c in linux
gcc hexdump.c -o hexdump //hexdump is an example for a file name
gcc <file-name.c> -o <output-file-name>
gcc hexdump.c -o hexdump //hexdump is an example for a file name