How many times the below loop will be executed? #include intmain() { intx, y; for(x=5;x>=1;x--) { for(y=1;y<=x;y++) printf("%d\n",y); } }?
Answers
Answered by
0
so number of executions : 5+4+3+2+1=15
Similar questions