Skip to main content
Search
Search This Blog
learn coding
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
September 14, 2022
Programming example for STATIC VARIABLES
Programming example for STATIC VARIABLES
#include<stdio.h>
void fun()
{
static int x=10;
x=x+1;
printf("x=%d\n",x);
}
void main()
{
fun();
fun();
}
Comments
Popular Posts
September 25, 2022
automate the boring stuff with python book pdf
September 23, 2022
intro to python book (for computer science and data science)pdf download
Comments
Post a Comment