Tag: c programming

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...

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 =...