summaryrefslogtreecommitdiff
path: root/5p15.cpp
diff options
context:
space:
mode:
Diffstat (limited to '5p15.cpp')
-rw-r--r--5p15.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/5p15.cpp b/5p15.cpp
new file mode 100644
index 0000000..4b9abd4
--- /dev/null
+++ b/5p15.cpp
@@ -0,0 +1,26 @@
+
+/*
+ *
+ * 5.15
+ *
+ *
+ */
+
+int main () {
+
+ /* Corrected versions
+
+ (a)
+ int ix = 0;
+ for ( ; ix != sz ; ++ix) {}
+ if (ix != sz)
+
+ (b)
+ int ix = 0;
+ for ( ; ix != sz ; ++ix) {}
+
+ (c)
+ for (int ix = 0 ; ix != sz ; ++ix) {}
+ */
+ return 0;
+}