gcc 컴파일 에러 No such file or directory gcc.exe 해결법
VSCODE로 컴파일을 하다가 터미널에 갑자기 이런 식으로 뜨면서 넘어가지를 않았다. gcc.exe: error (경로): No such file or directory gcc.exe: fatal error: no input files compilation terminated. 읽어보니까 경로부분에 역슬래시()가 전부 다 빠져있었다. 예를 들면, C:\Users\aaa\Desktop\aaa\cmania\hell\hellc.exe라고 돼야 할 것이 C:UsersaaaDesktopaaacmaniahellhellc.exe 이런식으로 되어 있던 것이다. 문제를 해결하는데 이틀이나 걸렸다. 방법 git-bash에서 파일 경로 구분자를 /가 아니라 \로 사용하기 때문에 기본 터미널을 powershell로 바꾸면 해..