by kaixue24
create .bmp file
|
|
[1 reply] : There are two ways to do this. a) Study the BMP file format and the... (by Catfish666)
|
by protest00
static variables !
|
|
[7 replies] Last: Ah, right, yes - well-spotted, Disch! I wasn't paying attention to th... (by MikeyBoy)
|
SDL (C++) Paint Program |
|
[3 replies] Last: On which surface should I draw the "brush" that moves with the mouse?... (by Disch)
|
by Jexen
Noob here, basic C++ problem, need help
|
|
[no replies]
|
by batgirl
To call a class method/function from a .hxx file in a .cpp file
|
|
[1 reply] : if you want to define it in the cpp file, then you should use the scop... (by nvrmnd)
|
by venkatacplpl
Coplexity of the algorithm
|
|
[7 replies] Last: Hi All, Thanks a lot for clear and concise clarfications...These post... (by venkatacplpl)
|
by iQChange
Checking Dynamic Memory Cross-platform
|
|
[4 replies] Last: @long double main I need to track it. I'm preety sure that is OS depen... (by iQChange)
|
by parsap
Delete an object in multi-thread situation
|
|
[2 replies] Last: Sounds like a job for std::shared_ptr. Would you please give an exa... (by parsap)
|
by zerohero911
Why is my output wrong?
|
|
[1 reply] : You have only initialized the two first elements in the array. (by Peter87)
|
by leo255
Using a struct/char array for Tic Tac Toe Game
|
|
[1 reply] : #include <iostream> typedef char board_type ; bool check_win( con... (by JLBorges)
|
by iQChange
How to make a Derived Base Dependent?
|
|
[4 replies] Last: Thanks. Solved :). (by iQChange)
|
by danielmtnz
End program by pressing enter key?
|
|
[3 replies] Last: Either read in a complete line, and use s string stream to extract whi... (by JLBorges)
|
Write a program that reads a string and outputs the number of times each lowercase vowel appears in it. |
|
[1 reply] : Please use code tags. http://www.cplusplus.com/articles/jEywvCM9/ Fr... (by Austin J)
|
by dasboshiet
Skips a Step
|
|
[1 reply] : Please don't double post. http://www.cplusplus.com/forum/beginner/123... (by giblit)
|
by gelatine
Continue statement in nested loop
|
|
[5 replies] Last: Don't use goto, just to exist from a loop. Some say never use goto at... (by kbw)
|
by gajeskies
Mathematical fomula in C++ windows32 application
|
|
[1 reply] : http://www.cplusplus.com/doc/tutorial/operators/ (bitwise operators) ^... (by ne555)
|
Iteration strange output |
|
[8 replies] Last: Well that works lol. The program runs just like I'd want it to now. Th... (by fizanimtiaz93)
|
by Binarydude87
Random matrix
|
|
[2 replies] Last: I forgot to add "cout << endl;" between the two for loops. Thank you f... (by Binarydude87)
|
by adamsheimat
passing 2d array created using <vector> --simple example
|
|
[5 replies] Last: Got it. Thanks a lot! (by adamsheimat)
|
counting vowels |
|
[4 replies] Last: You can also wrap your entire code in a while loop, which should solve... (by Smac89)
|