C++ range for
[C++] range for / if init / if constexpr
1. range for #include int main() { int x[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for(int n : x) { // x에서 하나를 꺼내서 n에다 담아주세요. std::cout
1. range for #include int main() { int x[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for(int n : x) { // x에서 하나를 꺼내서 n에다 담아주세요. std::cout