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
- AWS
- 풀이
- 클라우드
- 보안뉴스
- dreamhack
- AWS Cloud
- Cloud
- pwnable
- 빅데이터분석기사
- VS Code 오류
- 빅분기 실기
- nmcli
- mariadb
- [EduAtoZ]
- error
- Python
- 빅데이터 분석기사 실기
- Linux
- tcache
- ios frida
- centos7
- 빅데이터분석기사 실기
- pandas
- 인프런
- FSB
- Dreamhack.io
- wireshark
- 빅데이터 분석기사
- 워게임
- ubuntu
Archives
- Today
- Total
0netw0m1ra
[VScode] 오류잡기 - VS Code C bool 본문
<문제>
includePath 오류로 #include가 잘 되지 않거나 필요한 #include 파일이 없음
<해결방법>
방법1) #include <stdbool.h> 를 추가한다.
방법2) 아래의 문구를 삽입한다.
#pragma once
#define false 0
#define true 1
#define bool int
'개발' 카테고리의 다른 글
[VScode] 오류 잡기 - Python path in your debug configuration is invalid.(VS Code) (0) | 2021.05.24 |
---|---|
[VScode] 오류잡기 - true (0) | 2021.02.24 |
[VScode] 오류 잡기 - error: conflicting types for '함수' (0) | 2021.01.13 |
[VScode] VS Code 단축키 (0) | 2021.01.13 |
[VScode] 오류 잡기 - exit code: 3221225477 (0) | 2021.01.10 |