Declaration of a Variable in C
All the variables that are to be used in a program must be declared first. The declaration of variable means specifying the identifier (i.e. variable name), the type and width of data it will hold (i.e. data type) to the compiler. The general syntax of declaring a variable in C is as follows: Also, multiple … Read more