Local Global Variable Along with C memory Layout
Variable In C 1.Variable Defination. 2.Difference between Variable Declaration and Defination. 3.Scope of Variable. 4. C Memory Layout. 1.Variable Defination 1.In the C Programming Language, variables are used to store various types of data. 2.Variables must be defined before they can be used within a program. 3.Variable declarations include the type of the variable and, optionally, its initial value. Syntax:- data_type variable_name ; e.g. a. int count; {here creating integer type of variable with name count} ...