

InterviewSolution
Saved Bookmarks
1. |
How many times the loop will get executed if a is 2 byte wide? |
Answer» The while(j <= 255) loop will get executed 255 times. The size short int(2 byte wide) does not affect the while() loop. | |