Windows VSCode C설치
1. C/C++ 컴파일러 설치
- x86_64-posix-seh 설치 후 C:\mingw64에 복사
- win + R 눌러서 보이는 실행창에서 sysdm.cpl 입력
- 환경변수에서 시스템 변수 Path 에 C:\mingw64\bin 추가
- cmd 환경에서 gcc -v 확인
2. Visual Studio 설정
- C/C++ 프로젝트 폴더 생성(ex root_folder\helloworld\helloworld.c)
- C/C++ 확장 권장 메시지 박스 Install 3.
#include <stdio.h>
int main(){
printf("Hello, world!\n");
return 0;
}