C – Data Types

In C programming, data types specify the varying sizes and values in the variables that can be stored. It allocates the memory to store on OS depending on its type. A data type or simply type is an attribute of data that …

Read moreC – Data Types

C – Constants

Constants From the name constant, we can say that these are fix values that are used in a program and its values remain the same during the entire execution of the program. These fixed values in C are also called …

Read moreC – Constants