#include <stdio.h>
int i;
void increment( int i )
{
i++;
}
int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf(i=%dn, i);
return 0;
}
What will happen when the program above is compiled and executed?
Reveal answer
Fill a bubble to check yourself