summaryrefslogtreecommitdiff
path: root/2p32.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-07-31 17:09:45 +0200
committerOskar <[email protected]>2024-07-31 17:09:45 +0200
commita450487a18ec72ea3a3815bfaf17b2f701796b6f (patch)
tree67b4cfe127bc5c134f06c06e57ad35629e630b7b /2p32.cpp
parentb7819b597e1241dd98643eeda4c288a341142311 (diff)
more
Diffstat (limited to '2p32.cpp')
-rw-r--r--2p32.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/2p32.cpp b/2p32.cpp
index 1e7211f..5fa6c3e 100644
--- a/2p32.cpp
+++ b/2p32.cpp
@@ -3,14 +3,15 @@
/*
*
- * 2.32
+ * exersice 2.32 c++ primer
*
*
*/
int main () {
- int null = 0, *p = null;
- std::cout << null << " " << *p << std::endl;
+ int null1 = 0, *p1 = &null1; // Add a & ?
+ std::cout << null1 << " " << *p1 << std::endl;
+
return 0;
}