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 |
Tags
- pwnable
- ios frida
- FSB
- 빅데이터분석기사
- 인프런
- 빅데이터분석기사 실기
- Dreamhack.io
- 빅데이터 분석기사 실기
- tcache
- AWS
- Android
- nmcli
- ubuntu
- wireshark
- VS Code 오류
- centos7
- [EduAtoZ]
- 클라우드
- 빅분기 실기
- 보안뉴스
- 워게임
- error
- 풀이
- Linux
- dreamhack
- AWS Cloud
- mariadb
- 빅데이터 분석기사
- Python
- pandas
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 |