aboutsummaryrefslogtreecommitdiff
path: root/Module 2 Exercise 4.13 2/Module 2 Exercise 4.13 2/Module 2 Exercise 4.13 2.cpp
blob: b868496df90955ff403761c064701e43e1c6d66e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
using namespace std;

int main()
{
    char ascii = 67;
    cout << ascii << "\n";
    ascii = 43;
    cout << ascii << "\n";
    cout << ascii << "\n";
    return 0;
}