Answers for "how to compile a c program 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

Code answers related to "how to compile a c program in ubuntu"

Code answers related to "C"

Browse Popular Code Answers by Language