Answers for "how to run c files in ubuntu"

C
2

how to compile a c program in ubuntu

//Compiling a C program
//gcc -o excecutable_filename filename.c
gcc -o hello hello.c

//Executing a C program
//./excecutable_filename
./hello
Posted by: Guest on August-02-2021
0

how to runa c file executable in ubuntu

$ ./sampleProgram
Posted by: Guest on June-15-2021

Code answers related to "C"

Browse Popular Code Answers by Language