retagged by
525 views

1 Answer

1 votes
1 votes

Just follow the sequence 1-2-3-4-5-6 in the image below to understand loop working.

Hope it helped :)

https://gateoverflow.in/?qa=blob&qa_blobid=6027311124229894358

Related questions

3 votes
3 votes
2 answers
1
4 votes
4 votes
1 answer
2
8 votes
8 votes
5 answers
3
sh!va asked May 7, 2017
8,752 views
What will be the output of the following C code?#include <stdio.h main() { int i; for(i=0;i<5;i++) { int i=10; printf("%d" , i); i++; } return 0; }10 11 12 13 1410 10 10 ...