summaryrefslogtreecommitdiff
path: root/4p15.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p15.cpp')
-rw-r--r--4p15.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/4p15.cpp b/4p15.cpp
new file mode 100644
index 0000000..7ac66d5
--- /dev/null
+++ b/4p15.cpp
@@ -0,0 +1,26 @@
+#include <iostream>
+
+/*
+ *
+ * 4.15
+ *
+ *
+ */
+
+int main () {
+
+ double dval;
+ int ival;
+ int *pi;
+ /*
+ ival = 0;
+ dval = 0;
+ pi = 0;
+
+ I don't really see a reason not to do it this way but both of these examples work
+ */
+ ival = dval = 0;
+ pi = 0;
+ std::cout << dval << ival << pi << std::endl;
+ return 0;
+}