Losing elements when pushing to stack |
|
[6 replies] Last: Alright I'll check into the link, but I am little confused of how to i... (by kamikaze pgmr88)
|
by passw0rd
question
|
|
[15 replies] Last: You already have n and k as parameters, so they should not be masked. ... (by keskiverto)
|
by painith
Help with average function.
|
|
[2 replies] Last: Thank you so much! This really helped and I learned what I was doing w... (by painith)
|
by h4ever
Lambda - boost on Windows
|
|
[1 reply] : The program is waiting for user input. If input you 4 then hit enter, ... (by helios)
|
by Victor89
Print out digits of a number
|
|
[1 reply] : They are printed in reverse because you print the least significant di... (by dhayden)
|
by TadyZ
Stroustrup, std_lib_facilities.h and load of error
|
|
[1 reply] : See this thread for a solution: http://www.cplusplus.com/forum/beginne... (by admkrk)
|
by hungrymouth
Overloading '+'
|
|
[1 reply] : To overload an operator, at least one of the types that participates i... (by LB)
|
by hungrymouth
problem with Overloading
|
|
[3 replies] Last: Would this code be correct #include <iostream> #include <iomanip> ... (by hungrymouth)
|
by XDimension
Reference to array pointer issue
|
|
[1 reply] : You're storing a reference to a pointer which isn't sticking around. ... (by cire)
|
by trevormoon
pointer won't hold a value
|
|
[6 replies] Last: Undefined reference means your are referencing something that has been... (by Lowest0ne)
|
by raminlich
problem with geting difftime
|
|
[2 replies] Last: It looks to me like you are calling mktime incorrectly. Try correcting... (by kevinkjt2000)
|
by riseandtrade
What are the best programs to make c++ GUI
|
|
[4 replies] Last: @LB the actual form. I already have QT so im gonna try wxwidget. I wa... (by riseandtrade)
|
by hellworld136
Hard Matrix question
|
|
[5 replies] Last: dest has only one element, from initialiation. Aceix. (by Aceix)
|
by h4ever
unknown escape sequence:
|
|
[10 replies] Last: Ok, now that we have realised that adjacent string literals are conca... (by JLBorges)
|
by vxk
Use of Pointers
|
|
[3 replies] Last: A: From http://stackoverflow.com/questions/9181782/why-are-the-terms... (by keskiverto)
|
what is a companion types ? |
|
[1 reply] : std::string::size_type is a member typedef - an alias - for an unsig... (by JLBorges)
|
by vxk
pointer objects
|
|
[5 replies] Last: > where it is useful to use > Shape* p =new Text{….}; > instead o... (by ne555)
|
by Victor89
Sum of 2 strings in another string
|
|
[1 reply] : C = A + B ; //this doesn't work This piece of code would not work.... (by Aceix)
|
limit number of object that can be created |
|
[1 reply] : You could use a static factory pattern. But why would you want this ab... (by LB)
|
by riseandtrade
nested if else statement problem
|
|
[15 replies] Last: @nubforce You have a copy-paste mistake in line 30. 'yukon' should be... (by Yay295)
|