리터럴 Literal
피연산자 Operand
단항 unary
이항 binary
삼항 ternary
int x =2 ; // x is variable, 2 is a literal
cout << "My home"<<endl; // "My home" is literal
cout << x+2<<endl; // x is variable + is operator 2 is literal. x and 2 is operand.
삼항연산자
int y = (x>0) ? 1: 2;
'C++(홍정모의 따배씨++)' 카테고리의 다른 글
1.11 헤더파일 Header File 만들기 (0) | 2021.08.05 |
---|---|
1.10 선언 Declaration 과 정의 Definition의 분리 (0) | 2021.08.05 |
1.7 지역 범위 Local Scope (0) | 2021.08.05 |
1.6 키워드와 식별자 이름짓기 (0) | 2021.08.05 |
1.5 함수와의 첫 만남 (0) | 2021.08.04 |
댓글