Help with templates |
|
[1 reply] : template <typename> struct A {}; int main() { A<int> a; } ... (by vlad from moscow)
|
by Triea
Merging program
|
|
[6 replies] Last: Alright, I ended up fixing the program and now it reads in both lists ... (by Triea)
|
by frenijanks
Display Days in a Month including leap year
|
|
[3 replies] Last: the use of the ternary operator is not correct. His usage was entir... (by cire)
|
by KStim
Adding characters after the cin object
|
|
[4 replies] Last: Yes, mine or kevin's examples work, use mine if you want the variable ... (by closed account N36fSL3A)
|
by matti644
first game seriously need help what to start learning
|
|
[no replies]
|
by techboy
nested if else statements
|
|
[1 reply] : // question 1 #include <iostream> using namespace std ; int main() ... (by Texan40)
|
by Gyova
help
|
|
[7 replies] Last: Thank you @chipp (by Gyova)
|
How to do 50/50 chance of a number |
|
[3 replies] Last: Errr... why should you add 1 to it? That just makes it more complicat... (by Disch)
|
by ChetZ
Why is this a leak?
|
|
[9 replies] Last: I thought that you've got a non-directed graph. So A is neighbour of B... (by ne555)
|
by marihum
Displaying numbers that are multiples of...
|
|
[4 replies] Last: if (mul==0) Will almost always fail, mul is a double. (by TheIdeasMan)
|
by hoppalope
C++ Variance and Standard Deviation
|
|
[1 reply] : you can use for loop for calculating variance, it's very simple: f... (by chipp)
|
by cross21
program help
|
|
[1 reply] : Have you done anything at all? We won't do your homework for you - sh... (by TheIdeasMan)
|
by johnybravo
Help with math formula
|
|
[5 replies] Last: Also, be careful with floating point numbers and comparisons. These nu... (by TheIdeasMan)
|
getline problem |
|
[5 replies] Last: use cin.ignore() is better . to clear the buffer cin.ignore(); //cl... (by BasicNewbie)
|
by badkaykay
sort function issue - backwards?
|
|
[3 replies] Last: Oh and I fixed the counter for lines too! Thank you for the assistanc... (by badkaykay)
|
by nickdalal
Write a program that reads in a length in feet and inches and outputs the equivalent
|
|
[5 replies] Last: Here, we tend not to outright do people's homework for them. If you do... (by Moschops)
|
by Kurospidey
Break statement not within loop or switch
|
|
[6 replies] Last: here break statement is never reached because of the continue statemen... (by rahuljain983)
|
by biddlesby
Scott Meyers: Item 7, new operator exception handling
|
|
[3 replies] Last: To test your code, just force an ::operator new() failure. For insta... (by JLBorges)
|
by zhumpex
Polynomial Arithmetic
|
|
[5 replies] Last: I know what you mean. Thanks before, Sir. I don't lazy to read or sea... (by zhumpex)
|
by Hashimatsu
Why does it skip my 'getline'?
|
|
[4 replies] Last: The following code works fine. It waits for the user to type something... (by Moschops)
|