Skip to content

Commit a77d66a

Browse files
authored
Add files via upload
1 parent 0970e7b commit a77d66a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Eg1.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main(){
5+
int a = 'a';
6+
cout<<a<<endl;
7+
8+
char ch=98;
9+
cout<<ch<<endl;
10+
11+
char ch1=123456;
12+
cout<<ch1<<endl;
13+
14+
return 0;
15+
}

0 commit comments

Comments
 (0)