Loops

For Loops

for (int val : numbers_list) {  // C++11 only
    cout << val << "  ";
}
for (auto items : myarray) {  // C++11 only
    cout << items << endl;
}

for (int i = 0; i < 10; i++) {
	cout << i << endl;
}

Last updated