What will be the output of the program
main()
{
int m, n, p ;
for ( m = 0; m 3; m++)
for (n = 0; n3; n++)
for ( p = 0; p 3; p++)
if ( m + n + p == 2)
goto print;
print: printf("%d, %d, %d", m, n, p);
}


Posted on by