Answers for "compile 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
0

compile in c

gcc -std=c99 -Wall .main.c -o helloWorld
Posted by: Guest on March-10-2022

Code answers related to "C"

Browse Popular Code Answers by Language