diff options
Diffstat (limited to '2p32.cpp')
-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; +} |