English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories
1

Does visual C++ use ordinary C++ or does it use OS exclusive parts? (This is only about the coding, not the visual parts)

2007-09-15 16:59:06 · 3 answers · asked by Henry T 1 in Computers & Internet Programming & Design

3 answers

Depends on you, the programmer. You *could* use pure ANSI C++, or you can call Win32 API and whatnot. It's up to you.

2007-09-15 17:52:34 · answer #1 · answered by Kasey C 7 · 1 0

Visual C++ does an excellent job of supporting the ansi standards. It is also designed to make it easy to write programs for windows. So if your program needs to access win32 api or COM objects etc. you will be dabbling outside c++ as its understood on unix. However this is not exclusive to vc++, you'll be doing the same if you're using borland to develop an app that interacts with windows.

2007-09-16 04:37:39 · answer #2 · answered by Ram V 2 · 0 0

Visual C++ is only a C++ compiler and standard C++ libraries packaged with libraries to create Windows GUI elements together with an IDE. It's up to you to decide if you want to include the Windows GUI libraries in your code.

2007-09-16 00:27:16 · answer #3 · answered by Ron 6 · 0 0

fedest.com, questions and answers