add Chapter03

This commit is contained in:
Amar Mahmutbegovic
2025-04-02 23:02:38 +02:00
parent 0e79f982a2
commit 8b360ab9fc
3 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include <array>
int main() {
std::array<int, 4> arr{1, 2, 3, 4};
return arr[4];
}