30 articles C Tutorials Page 2 / 3

Data Types

C Programming Language becomes very powerful with the help of number of data types linked with it.  Data types vary according to their use. Different compilers have different data types. Actually variable type depends on the data type. Data type is the description of nature of data either in numeric forms ( integer or real)…

Increment/ Decrement Operators

Increment/ Decrement operators are also called unary operators. Another name of these operators is also counter operator. These are two as  ++ (increment operator) and — (Decrement Operator). Increment operators are used for incrementing the value one by one.  Similarly decrement operator are used for decrementing the value one by one. These are further subdivided into…