(C++) 2.4 char 문자형

이준우·2021년 10월 9일
0

딱히 그렇게 설명할건 없다... C언어를 배운 사람들이라면 어느정도 쉽게 이해할 것.아래의 코드는 한번 보고 이해를 해보자.

#include <iostream>

int main()
{
	using namespace std;

	char c1(65);
	
	cin >> c1;
	cout << c1 << " " << static_cast<int>(c1) << endl;

	cin >> c1;
	cout << c1 << " " << static_cast<int>(c1) << endl;

	cin >> c1;
	cout << c1 << " " << static_cast<int>(c1) << endl;

	cin >> c1;
	cout << c1 << " " << static_cast<int>(c1) << endl;

	return 0;
}
profile
꿈꾸는 CV

0개의 댓글