Notice
Recent Posts
Recent Comments
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Archives
관리 메뉴

일상

[ubuntu] vscode C/C++ extension 자동완성(intellisense) 안되는 문제 본문

programming

[ubuntu] vscode C/C++ extension 자동완성(intellisense) 안되는 문제

Mysteryu 2022. 8. 8. 15:49

ubuntu에서 vscode의 C/C++ extension을 사용해도 자동완성(intellisense) 기능이 작동하지 않았다.

 

해결 방법은 밑의 사이트에 나와있다.

 

https://stackoverflow.com/questions/44094817/why-is-visual-studio-code-telling-me-that-cout-is-not-a-member-of-std-namespace

 

Why is visual studio code telling me that cout is not a member of std namespace?

I am trying to setup visual studio code to program in c++. I have already installed the extensions C/C++ and C/C++ Intellisense Following is my code: #include<iostream> using namespace std;...

stackoverflow.com

원인은 단순히 bug 라고 한다..

 

혹시 위의 사이트가 지워질 수도 있으니 따로 해결법을 적으면

 

vscode에서

 

File -> preferences -> Settings 에서

 

Extensons -> C/C++ -> "C_Cpp.intelliSenseEngine": "Default" to "C_Cpp.intelliSenseEngine": "Tag Parser"

 

Comments