1. Create the source into a file with any text editor, for example: myprog.c
2. Compile it: gcc -Wall -W -pedantic -g -o myprog myprog.c
3. Run it: ./myprog
Once the program is written we must insist machine to exicute it.so to type the c-program you need some platform that is called "Editor".After writting the program the program should be converted to...
In Linux you can use the gcc [Gross C Compiler] compiler for compiling a C program. The file will be compiled and if no errors object file will be created, which can be executed by giving typing...