Last active
December 11, 2015 14:48
-
-
Save lseongjoo/4616705 to your computer and use it in GitHub Desktop.
C++ post increment usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sum_elements(int[] array, int numOfElements) | |
{ | |
int sum = 0; | |
int index = 0; | |
while(index < numOfElements) | |
sum += array[index++]; | |
return sum; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int a=5; | |
int b; | |
b = a++; | |
b = a++; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b = a; | |
a = a + 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = a+1; | |
b = a; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = x+1; | |
x += 1; | |
++x; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sum = sum + array[index]; | |
index = index + 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int n = 0; | |
while(n++ < 10) | |
cout << "Number of execution: " << n << endl; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int n=0; | |
while(n<10){ | |
n=n+1; | |
cout << "Number of execution: " << n << endl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment