Variables in C
A variable is a temporary memory location that holds its data temporarily. C requires the data type of the variable to be well defined at the time of variable declaration, according on its value. Syntax: data_type variable_list; Rules for using C Variables: C Variable name starts with a letter or underscore only; numbers and special … Read more