C++数组begin函数与end函数

#include
#include
//begin() and end() function in iterator headfile
using namespace std;
int main(void){
	int array[4]={
		0,1,2,3
	};
	int *start=begin(array);
	int *end_p=end(array);
	//end()返回数组最后一个元素的地址的后一个地址,也就是多一个地址
	for(start;start<end_p;start++){
		cout<<*start<<endl;
	}
	return 0;
}

你可能感兴趣的:(c++,c++)