8 lines
94 B
C++
8 lines
94 B
C++
#include <array>
|
|
|
|
int main() {
|
|
std::array<int, 4> arr{1, 2, 3, 4};
|
|
|
|
return arr[4];
|
|
}
|