diff options
author | Oskar <[email protected]> | 2024-08-19 15:22:32 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-19 15:22:32 +0200 |
commit | d0c6ac2b68380020d76d7f938307e056a25eb5f5 (patch) | |
tree | 09537a1676d9e9d5834b92de74076001e90465bf /4p19.cpp | |
parent | 19903ae3536255dfa2778846275267605cee9f7e (diff) |
confusing exercise, not really sure what a correct answer would be to this
Diffstat (limited to '4p19.cpp')
-rw-r--r-- | 4p19.cpp | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -14,6 +14,29 @@ int main () { int aa = 12374; int ival = 0; ptr = &aa; - vector<int> vec; + std::vector<int> vec = {1,2,3,4,5,6,7,8}; + + if(ptr != 0 && *ptr++) { + // Seems fine + // I think it's a bit difficult because we sort of have to + // assume what the author wants to actually do. Which is why + // it is a little unclear how safe any of this really is. + // The expression itself seems to be fine. But were we + // to dereference it inside this if statement then things + // could surely go very wrong. But then again, + // i have no idea what the author intended to check for with the expression + // I could say the same about the other 2 expressions in this program. + } + + if(ival++ && ival) { + // Seems fine + } + + + if(vec[ival] <= vec[ival + 1]) { + ++ival; + // Undefined: vec[ival++] <= vec[ival] + } + return 0; } |