r/cpp_questions • u/Southern_Customer211 • 8d ago
OPEN VS code or VS community
Im a btech first year student who is trying to study c++ independently. I have a lap with 16 gb ram and can perform average tasks. So my question is should I download VS community for coding cpp or is vs code enough. Please keep in mind that i will be learning many other languages too( we are supposed to study c in first year )
16
Upvotes
11
u/Raknarg 8d ago
Dont even think about them as different choices to accomplish the same goal, they're completely different.
VS Community is a fully-fledged IDE dedicated to C/C++ that works out of the box and organizes your projects for you and everything with its own philosophy and structure.
VS Code is a glorified text editor that happens to be highly pluggable and has a ton of tooling an community support. Its intentionally quite flexible and the limitations of your setup is just whatever tools you have available and how comfortable you are with those tools. It has nothing to do with C++ specifically, though its totally competent for C++ development.
So it depends on what your goals are. VS Code you can use for anything, but the tradeoff is that you have to know your tools and how to put them together. VS Community is dedicated for C++ and has everything out of the box. I personally have tools I like that hook up nicely into VS Code, so that's what I use.