Variable Types in C Programming Language
January 25, 2010
Variable Types in C Programming Language
Variables are names which are declared in order to store a single value that can either be an integer or a character. It is must to declare the type of the variable also i.e int, char etc. Generally there are two types of variables namely :
- Global variables
- Local variables
These variables are classified on the basis of their place of declaration. WAIT! There is more to read… read on »