C/C++
이랑 Code Runner
이 두개를 설치해준다.Code > 기본 설정 > 설정
으로 들어간다.run in terminal
검색
왼쪽에서 Run Code configuration
클릭
Code-runner: Run in Terminal
에 체크한다.
hello.c
파일을 만들어줬다.#include <stdio.h>
int main(void)
{
printf("hello world\n");
return 0;
}
오른쪽 위에 있는 ▶️ (Run Code) 버튼 누르면 실행 완료~!
터미널에 hello world
가 출력되었다.