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