Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개인 바이트
- Virtual Byte
- Specular
- C언어
- 메모리 누수
- Three(Two) Tone Shading
- ColorGradingLutPass
- 가상 바이트
- URP로 변경
- 프로그래밍 기초
- 게임 수학
- Toon Shader
- Cell Look
- Private Bytes
- VR
- URP
- 벡터
- Rim Light
- working set
- OculusMotionVectorPass
- 3d
- Windows Build
- Cartoon Rendering
- 작업 집합
- Cell Shader
- ASW(Application SpaceWarp)
- AppSW
Archives
- Today
- Total
WinCNT
C 언어 - 04. 연산자 본문
C언어에서의 연산자의 종류
//사칙연산
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void) {
int a;
int b;
scanf("%d %d", &a, &b);
printf("%d + %d = %d\n", a, b, a + b);
printf("%d - %d = %d\n", a, b, a - b);
printf("%d * %d = %d\n", a, b, a * b);
printf("%d / %d = %d\n", a, b, a / b);
printf("%d %% %d = %d\n", a, b, a % b);
system("pause");
return 0;
}
//논리 연산자 예제
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void) {
int a;
int b;
int c;
scanf("%d %d %d", &a, &b, &c);
printf("%d\n", !a); //C언어에서 0은 거짓(False), 그 외의 숫자는 참(True)
printf("%d\n", a && b);
printf("%d\n", (a > b) && (b > c));
printf("%d\n", (a > b > c)); //(a > b의 참, 거짓값) > c로 처리가 됨
system("pause");
return 0;
}
C언어에서의 이스케이프 시퀀스(Escape Sequence)
C언어에서의 비트 연산자
C언어에서의 연산자 우선 순위
'Study > C' 카테고리의 다른 글
C 언어 - 06. 반복문 (0) | 2021.08.02 |
---|---|
C 언어 - 05. 조건문 (0) | 2021.08.01 |
C 언어 - 03. 기본 입출력 (0) | 2021.07.31 |
C 언어 - 02. 변수와 상수 (0) | 2021.07.29 |
C 언어 - 01. 프로그래밍 (0) | 2021.07.29 |