diff options
author | Oskar <[email protected]> | 2024-07-30 17:19:15 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-07-30 17:19:15 +0200 |
commit | b7819b597e1241dd98643eeda4c288a341142311 (patch) | |
tree | ffdae7ef4b93b504b45de539cd0e3138fe0369e3 | |
parent | ec9a372cf1e0ec8e72fbb8174595dfadbb86a934 (diff) |
2.32
-rw-r--r-- | 2p32.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2p32.cpp b/2p32.cpp new file mode 100644 index 0000000..1e7211f --- /dev/null +++ b/2p32.cpp @@ -0,0 +1,16 @@ +#include <iostream> +#include "sales_item.hpp" + +/* + * + * 2.32 + * + * + */ + +int main () { + + int null = 0, *p = null; + std::cout << null << " " << *p << std::endl; + return 0; +} |