[vsCode] c++ 개발환경 구축
·
Tool/vsCode
Visual Studio Code 에서는 C/C++ 를 지원합니다. Microsoft C/C++ extension는 Windows, Linux, and macOS 다양한 운영체제에서 가능합니다. Getting started C/C++ compiler and debugger The C/C++ 확장 기능은 C++ 컴파일이나 디버깅 기능을 제공하지 않습니다. 그러므로 아래 컴파일러를 설치해야합니다. Popular C++ compilers are: GCC on Linux GCC via Mingw-w64 on Windows Microsoft C++ compiler on Windows Clang for XCode on macOS 윈도우에서 개발 하실땐 3번째보단 2번째 Mingw-w64 를 추천합니다. 세번째 Mi..