C language bool

hogeol·2022년 12월 19일
0

C/C++

목록 보기
7/9

Identifier bool is undefined in C

add below code top of your file

#ifndef __cplusplus
typedef unsigned char bool
static const bool false =0;
static const bool true =1;
#endif

0개의 댓글