Step by step

My diary

...

Search

breakinformation. Powered by Blogger.

2018년 9월 22일 토요일

bool


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdbool.h>
 
int main(void) {
    
    bool result = true;
    
    if (result == true) {
        
        printf("TRUE\n");
        
        return 1;
    }
    else if (result == false) {
        
        printf("FALSE\n");
        
        return -1;
    }
    return 0;
}
cs

0 개의 댓글:

댓글 쓰기