WinCNT

C 언어 - 04. 연산자 본문

Study/C

C 언어 - 04. 연산자

WinCNT_SSS 2021. 8. 1. 00:15

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)

(출처 : FASTCAMPUS)


C언어에서의 비트 연산자

(출처 : FASTCAMPUS)


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