In C programming, a variable is a named location in the computer’s memory that is used to contain a value which can be modified by a program. A variable can be defined by using a numerical digit (0 – 9),…
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 oriented programs are to be developed. Hence, the data types like…
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 actually stores integer values, not characters. To…
Introduction to C Programming
C is a high-level programming language that is used in general purpose programming. It is a structured programming language that was developed at AT&T Bell Labs, USA between 1969 and 1973, by Dennis Ritchie. Interesting facts about C C was…