aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab2/Lab 2 3c. 2
blob: f1c07c48d502f9376be69c9f328b4cb1b1784a8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream> 

using std::cout; 

int main() 

{ 

char ascii = 67; 

cout << ascii << '\n'; 

ascii = 43; 

cout << ascii << '\n'; 

cout << ascii << '\n'; 

return 0; 

}