Table of Contents
show
A variable is an entity whose value can vary during the execution of a program.
Declaring variable
[storage_class_specifier] [type_qualifier][type_modifier] type identifier;
Defining variable
[storage_class_specifier] [type_qualifier][type_modifier] type identifier = value;
The terms enclosed within square brackets is optional
Example
int variable;
static int variable;
static const unsigned int variable;
Views: 0