3 - Data Types I
3 - Data Types I
Data Types
Storage_class_specifier type_specifier
variable_name;
• Variable values
– Are accessible and last within { } the
brackets they are defined in.
• Local variables
– Only within a { } block
• Global variables
– Defined soon after pre-processor
directives and are accessible
throughout entire program.
printf(“value = %f”,6);