+ 2
How the value 5 and 8 comes? Anyone help pls...
2 odpowiedzi
+ 5
See how Values changing do dry run in copy you will understood.
+ 3
//copy, paste and run this to understand(see how I and j are incremented inside the loop)
#include <stdio.h>
int main() {
int i=0,j=0;
while(i++<=3)
{
while(j++<=3)
{
}
printf("i = %d\n",i);
printf("j = %d\n",j);
}
printf("%d%d",i,j);
return 0;
}