by atjm88
#include <windows.h>
|
|
[2 replies] Last: Is that means every time I want to start wrting this WINAPI program, I... (by atjm88)
|
by ctest
How to solve this problem
|
|
[4 replies] Last: thanks it's work, sorry for noob question I'm a newbie (by ctest)
|
by Ch1156
Help with Struct
|
|
[4 replies] Last: Awesome, thanks :) (by Ch1156)
|
by whocares21
creating graph?
|
|
[2 replies] Last: under Windows, you can use 'gdiplus' or standard 'gdi' functions to dr... (by Vins3Xtreme)
|
by CSharpque
Switch Case
|
|
[13 replies] Last: You'll have to be more specific. I'm not going to rephrase all that pa... (by hamsterman)
|
by snipslog
Moving stream pointer to next line in file
|
|
[7 replies] Last: ifstream can only do input operations, meaning it can work with files ... (by LB)
|
by CyberX
C++ Beginner Program Fix it right?
|
|
[4 replies] Last: As vin already pointed out, you told the compiler that calcAverage() ... (by closed account zb0S216C)
|
by darms21
Recursion Question
|
|
[4 replies] Last: if(N==0) return 0; return (a <0) + countNegatives(a+1, N-1); //or wi... (by ne555)
|
by Lio
Operator on power overload
|
|
[14 replies] Last: here's an example of powering any type: #include <cmath> using name... (by viliml)
|
by multi pop
keeping relation while sorting arrays
|
|
[1 reply] : I'm not entirely sure what you're asking, but if you want to enforce a... (by Gaminic)
|
by dpan
Trouble declaring string member in class header file
|
|
[3 replies] Last: [quote=dpan]Hmmm, ok, that fixes it. I guess I just figured that havin... (by guestgulkan)
|
by XenoReseller
Compiling for 64-bit, but I get 32-bit datatypes?
|
|
[3 replies] Last: ... The C language is one of the most widespread languages and it is s... (by Andrew2011)
|
by skyline01
Question About Defining Objects in Class Headers
|
|
[16 replies] Last: That does it! (I decided to make it a pure virtual function.) Thank ... (by skyline01)
|
Unit testing |
|
[2 replies] Last: Ooof, did not even think of that, but you are right. Thank you. (by closed account GL1Rko23)
|
by snipslog
Initializing a file
|
|
[2 replies] Last: Thanks. (by snipslog)
|
by theothermii
Strange behavior (Solved: srand() called more than once)
|
|
[2 replies] Last: Amazing! THANK YOU! That did it. (by theothermii)
|
by foxatlarge
Is the "const" specifier necessary? Any benefit?
|
|
[2 replies] Last: Thanks for your elaboration, which is helpful. I appreciate it. (by foxatlarge)
|
by snipslog
list<>::const_iterator with list.remove()?
|
|
[3 replies] Last: I can't use list::clear because I am only removing certain data from ... (by Cubbi)
|
by ahad917
Help with c++ grade calculator
|
|
[6 replies] Last: ok...the problem that i'm facing is it is not calculating the sum of t... (by ahad917)
|
by Tompoly
Need help with C++ program please help!
|
|
[1 reply] : Please indent your code. ¿Could you provide a minimal example? (witho... (by ne555)
|