Increment and Decrement Operators in C
In C, there are two increment (++) and decrement (--) operators to change the value of an operand (constant or variable) by 1. Increment operator...
Arithmetic Operators in C Programming
In all programming languages you will find arithmetic operators. Arithmetic operators are used with numeric values to perform common mathematical operations. In this tutorial I...
Formatted Input/Output in C for Programming Contest
In programming contest we have to use file to read data in different format and sometimes we have to write the output in a file....
Loop in C
There are different kinds of loops are used in C: Pre-test Loops: ——————————————- //while Loop while (c < 10) c++; //for Loop for (c =...