C++ vs Visual C++

Soldato
Joined
10 Oct 2005
Posts
4,192
Location
London
Can someone explain to me the difference between C++ and Visual C++, which one is standard etc
How similar are they, will programs coded in one run in the other?
 
Visual C++ (AKA MSVC) refers to either the Microsoft application you can use to write C++ or the compiler that that program uses under the hood.

There are other C++ compilers, such as GCC.

C++ itself is a standard (ISO <somenumber>) which each compiler implements to some degree of accuracy (and probably adds some of their own extensions for good measure).

---

It's probably not worth worrying about if you are just starting out.
 
Last edited:
Yeah its just the ide, and it isnt even very visual either. Its nothing special just a trick to convince everyone that they've got something special.
 
The 'visual' part refers to the fact that you can make a GUI using a wysiwyg interface. The C++ means it uses that language rather than Basic, C# etc.
 
Back
Top Bottom