In this instance what does the <= between the x and the 10 mean? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

In this instance what does the <= between the x and the 10 mean?

int main() { for (int x = 1; x <= 10; x++) { cout << rand() << endl; } } /* Output: 41 18467 6334 26500 19169 15724 11478 29358 26962 24464 */

11th Apr 2018, 3:42 PM
Sir
1 Answer
+ 4
x "is smaller than, or equals to" 10. x <= 10
11th Apr 2018, 4:04 PM
Hatsy Rei
Hatsy Rei - avatar