-
728x90
조건 ? 참일때 출력값 : 거짓일때 출력값 ;
입니다.
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { int a = 10; int b = 5; if (a > b ? 1 : 0) { printf("성공"); } else printf("실패"); return 0; }
a가 b보다 크므로 참이므로 "성공"을 출력하게 됩니다.
'헷갈렸던것' 카테고리의 다른 글
비트 연산 (0) 2022.01.21 버퍼(buffer) c/c++ (0) 2021.09.07 실수형 (부동 소수점) (0) 2021.09.03