user494461
user494461

Reputation:

What does build with cl mean for a c++ program?

the file comclient.cpp here http://msdn.microsoft.com/en-us/library/aa645738(v=vs.71).aspx says build with cl. what does that mean?

and also what type of project should I create n vc++? win32, console?

Upvotes: 2

Views: 2673

Answers (1)

Dr Deo
Dr Deo

Reputation: 4848

its the commandline compiler for visual studio for visualc++. Visual studio itself is just a mere IDE to help you code easier. Just like Devcpp has gcc and g++ as its compilers.

Upvotes: 2

Related Questions