Operators C is a rich language when it comes to the number of built-in operators. An operator is a symbol which gives instructions to perform any kind of operation, or action, on one or more operands.…
Expressions and Escape Sequences in C
Expressions An expression in C programming is defined as any valid combination of different entities like constants, variables, array elements or reference to functions. It can consist of some combina…
The ‘float’, ‘double’ and ‘long double’ data type
The integer data types are very useful when it comes to the process of software development. However, there arises the necessity of using floating-point numbers when financially and mathematically ori…
The ‘char’ data type in C
In C programming, the char data type comes handy for storing characters like letters and punctuation marks. However, from a technical point of view, it is an integer type, because the char type actual…
Character Set, Tokens, Keywords and Identifiers in C
This is the second post in ‘Fundamentals of C Programming‘ category after ‘Introduction to C Programming‘. The topics that this post will cover are: Character Set in C Tokens i…