Code Snippets C

#include
void f(void);
int main(void)
{
int j;
for(j = 0; j < 10; j++)
f();
return 0;
}
void f(void)
{
static int count = 0;
count++;
printf("count is %d\n", count);
}