selva murugesan
Advanced Member level 4
hello
Can any one explain me about static function in c with example?
Can any one explain me about static function in c with example?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include<stido.h>
void foo(void)
{
// int a = 10;
static int a = 10;
a++;
printf("%d\n",a);
}
int main()
{
foo();
foo();
}