What is program Editing/Compiling/Error checking/Executing/Testing/Debugging?
1. Program Editing Ø For writing the C program source code, you need text editor called as C program editor.Text editor produces .C(dot c) file as C source program file. Ø Windows based c editors available along with softwares like Turbo C/C++, Code Blocks with Mingw, Dev C++ with Mingw/GCC. Ø Xcode available on Mac and Code Blocks with Mingw available on Windows, Linux, and Mac,G-editor (gedit) also available on Linux. 2. Program Compiling Ø C program source code needs to be compiled by C compiler ,which converts C source code into binary code and then it can be executed or run. Ø If source code contains errors (or warnings),it will be thrown during compilation process. If source code is error free then it will ready for execution or running. 3. Error Checking Ø When C program contains error, then as a part of error handler the global variable errno will be automatically assigned a code(or val...