C Programming Language study is simple, humble and at the same time complicated, too. First we have to check whether C Programming setup file installed or not in our Computer. Perhaps it may be installed or it can even be copied from other Computer. If it is copied, the folder named TC must be in the same DRIVE as in the source Computer, otherwise it will not work properly and will get an error like "stdio.h can't open", because the source and destinations drives are different. Then find the file named "TC.EXE" in the computer and double click on that, then we will get the C Programming interface, ie a window will appear, there we can open new file and write C Programe. After the completion of the programe, just save file as "anyname.c" and then this file has to be Compiled using the keys "Alt+F9" and, if there is no error seen, Run using the keys "Ctrl+F9" then output will be displayed in the Monitor.
C Code Shortening Techniques or My Logic for Reduced Source Code Writing Tips and Tricks in C Program Language :- Role of Semi Colon(;) and Curly Braces({ }) in C Program Perhaps, you might have heard that the for() loop should not end with ";" like if(). But, in fact the ";" is using in C language as a Statement Terminator, so, if we want to terminate for() loop, then we should use ";" at the end of for() loop. [ Header files are to be included as usual, it is not written in the examples ] Question : write a C program to print 1 to 10 numbers using for() loop ? Example 1 : void main() { int i; for ( i = 1 ; i <= 10 ; i++ ) { printf("%d\n",i); } } /* above program, for() loop has one statement outside, so we do not use ";" at the end, because if we put ";" the for() will not take the continuing statement as its own. */ Example 2 : void main() { int i; for ( i = 1 ; i <= 10 ; printf( "%d \n" , i ...