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 */
1 Odpowiedź
+ 4
x "is smaller than, or equals to" 10.
x <= 10