Some questions about C++

Newbie Spellweaver
Joined
Jul 4, 2007
Messages
25
Reaction score
0
Ok, in school i do computer programming, i get the basis on it, and im doing wonderful.
we do stuff such as

Code:
void main ()
{
int blah =0;
}
But im wondering, how can i insert images? When i run it it opens CMD and it displays the program. Im wondering if You can make games with images?

I might sound like a noob, but some explination is greatly appreceated.

Thanks!
 
Yea SDL is pretty good for making 2D games in C/C++ (I usually recommend pygame, the python bindings for SDL, for beginners) however, you should probably stick to ANSI/ISO standard C++ (main should return int, usually zero for success and non zero for an error) if you want your code to work outside of visual studio.
 
Back