Making System Ready: Installing Dev C++
Hi, Its well said. First thing should be done First. Writing a C program, without configuring its compiler is like planning to construct a building without its base. Thus, Before writing your first program, the system should be configured to compile and execute C/C++ programs. Job of compiling a program is done by compiler, which converts program from human understanding format to object files. While compiling, it throws errors and warnings . If your program has errors , than, the executable wont be created and you will not be able to run the program. Thus, errors are violation of compilers rules which needs to be fixed mandatory. On the other hand, warnings are mistakes which can be avoided, the executable will be created and you can run the program. But, if warnings are not taken care of, program may behave weirdly sometimes, and some time may run properly. Most usual mistake while writing C program is " array out of bound" where you are trying to access a l...