Answers for "compile and run in c"

C
0

how to compile and run a program in c

//for UBUNTU and other linux distros
gcc -o my_program my_program.c
//to run..
./myprogram
Posted by: Guest on December-20-2021
0

compile c program

$ gcc hello.c
$ ./a.out
Posted by: Guest on October-21-2021

Code answers related to "compile and run in c"

Code answers related to "C"

Browse Popular Code Answers by Language