We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b8351 commit a27a16dCopy full SHA for a27a16d
Section08-Statements_and_Operators/section08_source_code/IncrementDecrementOperators/main.cpp
@@ -82,7 +82,7 @@ int main() {
82
cout << "Counter : " << counter << endl;
83
// output: Counter : 11
84
cout << "Result : " << result << endl;
85
- // output: Counter : 21
+ // output: Result: 21
86
87
// Example 5
88
counter = 10;
@@ -96,11 +96,11 @@ int main() {
96
// then counter = counter + 1
97
98
99
- // // output: Counter : 11
+ // output: Counter : 11
100
101
102
- // output: Counter : 20
+ // output: Result : 20
103
104
cout << endl;
105
return 0;
106
-}
+}
0 commit comments