Declaration of Variable in C programming:
We can declare variable using following syntax:
Datatype variable_name;
Example:
int number;
We can also declare more than one variable :
Example:
int x,y,z;
Assigning Values to variable:
We can assign values to variable using following Syntax:
Syntax:
variable_name=values;
Example:
number=10;
C language, C programming, c language programming, declaring variable in c language, how to declare variable in c programming, how to assign values to variable in c programming. C language tutorial in hindi, C programming tutorial in hindi.