如何在C ++ 11中使用范围向后遍历数组?

时间:2018-01-06 17:53:15

标签: c++ arrays c++11

这是我从第一个元素到最后一个元素遍历数组的方法:

#include <iostream>
using namespace std;

int main()
{
    int a[4]={0,1,2,3}, i=0;
    for (auto i : a)
        cout << i << " ";
    cout << endl;
    return 0;
}

是否可以使用相同的循环向后遍历它?如果是这样,怎么样?

0 个答案:

没有答案