Skip to content

Commit f0d25c9

Browse files
authored
Create Postfix_Prefix.cpp
1 parent df4bb38 commit f0d25c9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Postfix_Prefix.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#include<iostream>
2+
#include<conio.h>
3+
4+
using namespace std;
5+
6+
int main ()
7+
{
8+
int i = 5;
9+
10+
cout<<++i;
11+
cout<<i++;
12+
cout<<++i+i++;
13+
14+
getch();
15+
}

0 commit comments

Comments
 (0)