그렇게 외워지지도 않았고.. 물론 외우려 노력을 안했지..
드디어 확실하게 정리해본다.
코딩할때 필요한 아스키코드
1. 숫자 '0'은 10진수로 48	|    '0' ~ '9' -> (10진수) 48 ~ 57
2. 대문자 'A'는 10진수로 65 | 'A' ~ 'Z' -> (10진수) 65 ~ 90
3. 소문자 'a'는 10진수로 97 | 'a' ~ 'z' -> (10진수) 97~ 122
#include <iostream>
#include <algorithm>
using namespace std;
 int main() {
	char c = 'A';
 	cout << c;		// 출력결과 A
	cout << (int)c;		// 출력결과 65
	cout << (char)(c + 2);  // 출력결과 C
	cout << c + 2;		// 출력결과 67
}