void F( )
{
static int x = 0;
x++ ;
printf("%d", x);
}
int main()
{
F( );
F( );
F( );
return 0;
}
Enter numerical value using the virtual keypad. Round off where necessary.
void F( )
{
static int x = 0;
x++ ;
printf("%d", x);
}
int main()
{
F( );
F( );
F( );
return 0;
}
Enter numerical value using the virtual keypad. Round off where necessary.