I'm somewhat familiar with boost, but I was looking for something even bigger. Though, maybe I have just not looked at boost enough. I hear the boost libraries have a bad rep, is that true?
Does anyone know of a site that has a huge repository of C++ code that you can use for free? I'm talking about a site that would have literally thousands of C++ algorithms, code snippets, etc. (it...
Ok, I see your point. I tried to code some of the things from the book before and certain things didn't work right (which I mistakenly attributed to its age), but I just tried it again and it worked...
I'm thinking of something along the lines of "Programming Windows" by Charles Petzold, but that isn't outdated. I've also got "Windows via C/C++" by Richter and Nasarre, but it is complex and not...
I had not thought about why I had 'name' as an char array instead of a string. I suppose I'll make that change. The cards are strings because they come from a string vector. Each element has two...
I'm writing small poker game simulator. Program will ask for number of players on table (from 2-9) and then will create those amount of structs and fill in a name for each struct. Here's how I see...
I'm programming a card game and want to be able to sort by value, so if someone has an Ace "A", then that would have a higher value than someone with a 10, 'T', or a Jack 'J'. I'm been looking...
Doing some DirectX programming, but can't figure out the following: I want to have a full screen with graphics on one side, which would comprise about 70% of the screen and then text information on...
Anyone know a good book or pdf file out there for learning how to program Windows APIs? I ordered Petzold's book already, but it seems old and not sure if it's a slow progression or just a reference...
I wrote an assembly program in Notepad and changed the extension to .asm. I found the MASM file, ML.exe in MS Visual Studio 9.0\VC\bin. In command prompt, I ran "ML first.asm", but got an error...