How many times will this loop execute?
How many times will this loop execute? Explain your answer. unsigned char half_limit = 150; for (unsigned char i = 0; i < 2 * half_limit; ++i) { // do something; }
- 9216 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 22 जुलाई
- 0 टिप्पणी
-
- Interview questions for C++ language
- Most suitable way for returning the logical errors
- Which is the best software for C++ programming?
- Reallocation of pointers in C++
- Early bindingand Late binding in C++
- Where can I find study materials for learning c++?
- What is difference between C and C++ ?
- What are the basic concepts of oops in C++?
- What is C++? How one can go for C++ in engineering?
- Difference between class and struct?
मॉक परीक्षण अभ्यास के लिए
c plus plus programming
this code will result in an infinite loop. However since i is an unsigned char, it is represented by an 8-bit value which, after reaching 255, will overflow (so it will go back to 0) and the loop will, therefore, go on forever.