배열

특징

iterator

range-based for loop

int exam[] = {1, 2, 3, 4};
for(int a : exam)
	std::cout << a;