Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

c++ in visual studio

I'm learning C++ but I have seen that Visual Studio has Visual C++. I searched about the difference but I haven't found anything satisfying.
The only thing I found was, that Visual C++ is a version of C++ but with more libraries. Please correct me if I'm wrong.

So I have two questions:

  1. What's the difference between C++ and Visual C++?

  2. And can I write normal C++ in Visual Studio? If I can't write normal C++ in Visual Studio, where do I write it the best in.

I want to try to make some small games.

like image 342
yente paternotte Avatar asked Jul 18 '26 23:07

yente paternotte


1 Answers

C++ is a programming language and Visual C++ is a Microsoft's C++ compiler.

Visual C++: less portable, but has specialized libraries which may make you stick with Windows.

like image 164
Saurav Sahu Avatar answered Jul 21 '26 12:07

Saurav Sahu