In this chapter, we will learn about the built-in types in C and variable declarations.
3.1 Declarations
A declaration declares a (variable) name. When we declare a variable, we specify its type and variable name, and the compiler reserves memory for our variable. This occupied space is called an object or data object in memory. These data objects are accessed by names we call variables. We need to declare a variable before we can use it. To declare a variable, we put the type_name before the variable_name ...