Answers for "how to compile a c file in linux"

4

how to run c file in linux

gcc fileName.c -o fileName //compiles it
./fileName				   //runs it
Posted by: Guest on March-03-2021
4

how to run c in linux

gcc hexdump.c -o hexdump //hexdump is an example for a file name
Posted by: Guest on August-05-2020
0

how to compile a c file in linux

gcc filename.c -o anyname
./anyname
Posted by: Guest on September-13-2021
-1

execute c program in linuz

$ ./programName
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language