vote up -5 vote down star

I have the need/desire to learn to program against Win32 in C++. I am a little confused as to what Win32 even is, as I have no experience on the platform.

What would you recommend to get me started programming and debugging C++ programs on Win32?

flag

0% accept rate
A moderator really needs to fix this question. – workinprogress Jan 14 '09 at 14:26
@workinprogress: Agreed and done. – Rich B Jan 29 at 20:03
I can't see the reason for so many down-votes... the guy asked for pointers on a platform+language... what's YOUR problem? – jpinto3912 Jun 3 at 15:27
@jp I suspect most of the down votes were on the first revision of this question. It's funny how a simple edit to use more correct/sophisticated grammar and actually using punctuation makes the question seem so much more reasonable, even though it didn't change in essence. – Ben Schwehn Jun 5 at 8:51

5 Answers

vote up 4 vote down

You can download free versions of Visual Studio Express (e.g., Visual C# Express, Visual C++ Express), from here and, although they don't have the more advanced features of those products, they're still very good for learning.

link|flag
vote up 0 vote down

Formally the Windows API is Microsoft's core set of application programming interfaces. For someone in a hurry! Get Microsoft Visual Studio. Start it up and choose Files->New Project and select Visual C++ and Win32 Console Application. This will get you started quickly and debugging is easy.

link|flag
vote up 66 vote down

Answering your questions one by one:

1/ Will anyone tell me what Win32 is?

Win32 is the application programming interface (API) of Windows. Specifically, it's for 32-bit Windows and beyond since the old API was for the primarily 16-bit versions of Windows (Windows ME and before). The first Windows version to fully support Win32 was Windows NT.

The API is the set of calls you are permitted to make. For Windows, it includes such things as window creation and manipulation, multi-threading, graphics drawing, text rendering and so on. Basically it's how your program interfaces to the Windows operating system to get things done.

2/ How to I compile and execute c++ program in win32?

To do that, you'll need a compiler. Popular choices are Microsoft Visual C++ (you can get the Visual Express edition for free from Microsoft), CygWin or MinGW (the minimalist GNU for Windows). Search Google for "free c++ compilers for windows".

A compiler takes C++ source code and turns it into executable code, able to be run on the target system (Windows in this case).

Once you have an executable, you run it as you would any other program. If you create the executable do_something.exe, just type do_something from a command line.

The compilers don't restrict you to just command line tools, they also allow you to create full-blown graphical applications so you can just double-click on the executable in File Manager, or make an associated file type to run the executable automatically for specific file types.

3/ How do I debug in win32 with c++ program?

The Visual C++ integrated development environment (IDE) has the compiler and a debugger included in it. Debugging is relatively painless as you can simply step through each line of the program and examine its behaviour. Other environment such as MinGW and CygWin have command-line debuggers which are not as closely aligned to Windows as Visual C++.

4/ What other things do I have to know while I am writing c++ program in win32?

I hardly know where to begin. You have a long (but hopefully enjoyable) journey in front of you. It might be wise to check back here with other questions once you have organised to install a compiler and have tried to get your first program compiled and running.

Best of luck.

link|flag
Wish I could upvote this answer 2x. – Pete Dec 30 '08 at 9:49
Such an answer. I'd give you 100 thumb ups for this..if I could.. – ZiG Dec 30 '08 at 12:47
Windows ME/98/95 also contained a Win32 implementation. – rstevens Jan 13 '09 at 17:52
You should edit to include references to the C++ 5.5 compiler, debugger and linker (app, dll and librarian), FREE from ex-Borland – jpinto3912 Jun 3 at 15:25
Why would I mention the Borland compilers (Embarcadero or whoever, they'll always be Borland to me)? I suspect their usage market penetration is a statistical blip next to those I did mention and they're just a curiosity now (IMNSHO). – paxdiablo Jun 3 at 23:33
vote up 5 vote down

Whoa, hold on here. This is a huge topic. Are you trying to cram learn what Win32 is for a job interview or something? If you need to learn Win32, you need THE book, Programming Windows 5th Edition by Charles Petzold:

http://www.charlespetzold.com/pw5/

It doesn't matter that its old; it virtually all still applies.

link|flag
So why is this getting voted down? – BobbyShaftoe Jan 29 at 21:54
+1! This is indeed THE book to read for Win32 programming. – Eclipse Feb 9 at 22:42
vote up 5 vote down

Win32 usually refers to the Win32 API, which can be used to interact with the Windows operating system. It can also refer to the platform, which is the 32 bit version of Windows. To compile for it, you will need a compiler such as Microsoft Visual C++ or MinGW/gcc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.