c++ auto for code example
Example 1: c++ auto loop
for(auto x: myVector){
cout<< x << " ";
}
Example 2: auto in cpp
#include<iostream>
#incllude<vector>
using namespace std;
int main() {
vector<int> vec(10); // Auto deduce type to be iterator of a vector of ints.
for(auto it = vec.begin(); it != vec.end(); vec ++)
{
cin >> *it;
}
return 0;
}