Variables in C

A variable is a name of memory location. It is used to store data. Its value can be changed and it can be reused many times.

It is a way to represent memory location through symbol so that it can be easily identified.

Let's see the syntax to declare a variable:




type variable_list;  



The example of declaring variable is given below:




int a;  
float b;  
char c;  



Here, a, b, c are variables and int,float,char are data types.

We can also provide values while declaring the variables as given below:




int a=10,b=20;//declaring 2 variable of integer type  
float f=20.8;  
char c='A';  



Rules for defining variables

1.A variable can have alphabets, digits and underscore.

2.A variable name can start with alphabet and underscore only. It can't start with digit.

3.No white space is allowed within variable name.

4.A variable name must not be any reserved word or keyword e.g. int, float etc.

Valid variable names:




int a;  
int _ab;  
int a30;  



Inalid variable names:




int 2;  
int a b;  
int long;  



Types of Variables in C

There are many types of variables in c:

1.local variable

2.global variable

3.static variable

4.automatic variable

5.external variable

Local Variable

A variable that is declared inside the function or block is called local variable.

It must be declared at the start of the block.





void function1(){  
int x=10;//local variable  
}  



You must have to initialize the local variable before it is used.

Global Variable

A variable that is declared outside the function or block is called global variable. Any function can change the value of the global variable. It is available to all the functions.

It must be declared at the start of the block.




int value=20;//global variable  
void function1(){  
int x=10;//local variable  
}  



Static Variable

A variable that is declared with static keyword is called static variable.

It retains its value between multiple function calls.




void function1(){  
int x=10;//local variable  
static int y=10;//static variable  
x=x+1;  
y=y+1;  
printf("%d,%d",x,y);  
}  



If you call this function many times, local variable will print the same value for each function call e.g, 11,11,11 and so on. But static variable will print the incremented value in each function call e.g. 11, 12, 13 and so on.

Automatic Variable

All variables in C that is declared inside the block, are automatic variables by default. By we can explicitly declare automatic variable using auto keyword.




void main(){  
int x=10;//local variable (also automatic)  
auto int y=20;//automatic variable  
}  



External Variable

We can share a variable in multiple C source files by using external variable. To declare a external variable, you need to use extern keyword.

myfile.h

extern int x=10;//external variable (also global)

program1.c




#include "myfile.h"  
#include <stdio.h>
void printValue(){  
    printf("Global variable: %d", global_variable);  
}  






Instagram