diff options
author | Oskar <[email protected]> | 2024-08-15 18:16:33 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-15 18:16:33 +0200 |
commit | 38e3c732d86165a84cd872e96e10ca1e811f2bb1 (patch) | |
tree | 5afc858281bd4d1cf9da8eb1b9034fe73d48435c /3p43.cpp | |
parent | bec90eeec483f4fd685bb28758cdf55897bc0b3e (diff) |
more exercises
Diffstat (limited to '3p43.cpp')
-rw-r--r-- | 3p43.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
@@ -2,6 +2,7 @@ #include <vector> #include "sales_data.hpp" #include "sales_item.hpp" +#include <iterator> /* * @@ -11,5 +12,39 @@ */ int main () { + + int ia[3][4] = { + {1,2,3,4}, + {5,6,7,8}, + {9,10,11,12} + }; + + for (int (&a)[4] : ia) { // A reference to an array of 4 int's + // I'll be honest i would not have figured that out myself, i did search the internet for answers. + for (int aa : a) { + std::cout << aa << " "; + } + + std::cout << std::endl; + } + + std::cout << std::endl; + for(size_t i = 0 ; i != 3 ; ++i) { + for(size_t j = 0 ; j != 4 ; ++j) { + std::cout << ia[i][j] << " "; + } + + std::cout << std::endl; + } + + std::cout << std::endl; + for(int (*p)[4] = std::begin(ia) ; p != std::end(ia) ; ++p) { + for(int *pp = std::begin(*p) ; pp != std::end(*p) ; ++pp) { + std::cout << *pp << " "; + } + + std::cout << std::endl; + } + return 0; } |