VScode c언어 디버깅 관련 질문
#include<stdio.h>
int main(){
int num;
scanf("%d", &num);
for(int i = 1; i<= num; i++){
for(int j = i; j <=num; j++){
printf("*");
}
printf("\n");
}
return 0:
사진과 같이 코드를 작성 후에 디버깅하면 아래 사진과 같은 settings.json 파일이 뜨는데 왜 그런거고 해결 방법 아시는 분 계실까요?
{
"explorer.confirmDelete": false,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.pythonPath": "C:\\Users\\hwaja\\AppData\\Local\\Programs\\Python\\Python38\\python.exe"
}
댓글