C C++ JAVA
Showing posts with label
Static Varible in C
.
Show all posts
Showing posts with label
Static Varible in C
.
Show all posts
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++;
}
Older Posts
Home
Subscribe to:
Posts (Atom)