-
Notifications
You must be signed in to change notification settings - Fork 0
/
Practice 24.cpp
38 lines (33 loc) · 941 Bytes
/
Practice 24.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <iostream>
//int main()
//{
// using namespace std;
// char ch; // declare a char variable
// cout << "Enter a character: " << endl;
// cin >> ch;
// cout << "Hola! ";
// cout << "Thank you for the " << ch << " character." << endl;
// cin.get();
// cin.get();
// return 0;
//}
#include <iostream>
int main()
{
using namespace std;
char ch = 'M'; // assign ASCII code for M to ch
int i = ch; // store same code in an int
cout << "The ASCII code for " << ch << " is " << i << endl;
cout << "Add one to the character code:" << endl;
ch = ch + 1; // change character code in ch
i = ch; // save new character code in i
cout << "The ASCII code for " << ch << " is " << i << endl;
// using the cout.put() member function to display a char
cout << "Displaying char ch using cout.put(ch): ";
cout.put(ch);
// using cout.put() to display a char constant
cout << endl << "Done" << endl;
cin.get();
cin.get();
return 0;
}