Homework help |
|
[6 replies] Last: Why isn't numbers used when checking the answer? The switch () ... (by Chervil)
|
by amitk3553
STL containers vs queues through linked lists
|
|
[2 replies] Last: What is the difference between queues developed through linked list c... (by Catfish4)
|
by serrld113
for loop?
|
|
[4 replies] Last: I agree with giblit , a for loop is good when the number of iteration... (by TheIdeasMan)
|
avoid switch crash |
|
[2 replies] Last: For example function to validate input: #include <iostream> #include ... (by MiiNiPaa)
|
by layzer
Help with getting functions to work
|
|
[10 replies] Last: This will work also double validpck() { if ((pck == 'a... (by admkrk)
|
by jorellc
while loop not reading "\n"
|
|
[2 replies] Last: ah I see. Totally forgot about that .empty() function.. Thanks (by jorellc)
|
by cpplease
Help with "error: expected `;' before '{' token"
|
|
[5 replies] Last: thanks all. (by cpplease)
|
by Gladdok
A dynamic 'vector' container that cannot be resized
|
|
[2 replies] Last: Why not a vector of pointers to objects? Makes more sense to me. Or ev... (by xismn)
|
by theunloved
How to copy constructor with unique_ptr in Linked Stack
|
|
[5 replies] Last: Instead of this:[code firstline=11] LinkedNode(T newElement, un... (by LB)
|
by dangbeau
Problem with switch structure
|
|
[7 replies] Last: integer divided by integer returns integer. Throw a float in there and... (by giblit)
|
by dkarayof
Starting to get annoyed with this
|
|
[4 replies] Last: @Hedgehog Ninja Sorry 'bout that ;) I guess the saying is true, then... (by whitenite1)
|
by logoster
Need Help with Part 2
|
|
[7 replies] Last: nvm, figured it out, just replaced all the code for the else in the ge... (by logoster)
|
by AGZZ21
C++ 3 dice rolls with only 1 int?
|
|
[3 replies] Last: for(int x = 0; x < 3; x++) { //dice roll code } while(//us... (by GRex2595)
|
by playitpro
Why is my program crashing?
|
|
[1 reply] : Line 30. Division by zero. See if you can step through the program and... (by booradley60)
|
by Wakobu
Do-while Beginner Question
|
|
[3 replies] Last: why doesn't it work if I declare it inside the loop? By creating va... (by Uk Marine)
|
by Graeme Hart
Creating a new object within a function implementation for that class.
|
|
[3 replies] Last: Try it this way: template<typename T> void MyVector<T>::swap(MyVector<... (by norm b)
|
by brillo
Producer and Consumer problem
|
|
[2 replies] Last: It worked! Thanks for your help. (by brillo)
|
by megascruples
Array Based Deque
|
|
[7 replies] Last: That is really difficult to read. (by GRex2595)
|
by brian marcum
Homework help
|
|
[6 replies] Last: I can figure out this: double calcAverage(double value1,double valu... (by eyenrique)
|
by Annatar
if/else syntax question
|
|
[2 replies] Last: Line 1 to 12 is where the user is supposed to choose what paper format... (by Annatar)
|