Monday 23 February 2015

Static Varible in C


#include<stdio.h>
#include<conio.h>
main()
{
int i=0;
for(i=0;i<10;i++)
Like();
getch();
}
Like()
{
static int x=100;
printf("\n X Variable Value is  :%d",x);
x++;
}

No comments:

Post a Comment