difference between c++&visual c++
hai viewers
i am a new viciter of this site,i want to know how a c++ program will differ form a visual c++ program,in what way it will be different from each ther in oth program,pls give sujessions for it
vigneshvh
Junior Poster in Training
56 posts since Nov 2007
Reputation Points: 6
Solved Threads: 4
>>i am a new viciter of this site
lier -- you already have 31 posts. :)
Visual C++ is a compiler, not a language.
>>in what way it will be different from each ther in oth program
None. VC++ is just the name of a compiler that will compiler normal C++ programs.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
C++ is a programming language, as defined by ISO.
VC++ is an implementation of that language, as provided by Microsoft.
G++ is another implementation of C++, as provided by FSF.
If you stick to using features defined by ISO, then your C++ program should compile with any C++ compiler.
Salem
Posting Sage
11,531 posts since Dec 2005
Reputation Points: 5,862
Solved Threads: 953