Answers for "install c program in ubuntu"

C
0

install c ubuntu

sudo apt install build-essential
Posted by: Guest on December-24-2020
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 "C"

Browse Popular Code Answers by Language