324 views

1 Answer

0 votes
0 votes
value of i and j must be initialized then only we can calcuate the result because  iteration of inner loop depends upon the outer loop.

 

if i and j=0 then the ans will be 6.

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
2 answers
2
1 votes
1 votes
2 answers
3
radha gogia asked Jan 10, 2016
469 views
2/2(2)+3/2(3)+4/2(4) +.......
0 votes
0 votes
3 answers
4
radha gogia asked Sep 3, 2015
731 views
main( ){ int i=-4, j, num=10; j = i % -3; j = j?0: num*num; printf(“j = %d”, j); } I tried with the formula $\boxed{\displaystyle \text{Dividend} = \left(\text{Quoti...