by Nico
How to store unique values (pointers)
|
|
[4 replies] Last: You are right, I should have cleaned that up when I was done with my t... (by Nico)
|
by Fomer
Quadratic Equation
|
|
[2 replies] Last: Do you have an issue with the code? (by chicofeo)
|
by DragonOsman
Finding the mode of a series of numbers - I'm trying to use std::count()
|
|
[12 replies] Last: So something like this: #include <iostream> #include <algorithm> #i... (by Arslan7041)
|
by Nico
Making Remote Procedure Calls
|
|
[no replies]
|
by Xnot
Binary read and write
|
|
[2 replies] Last: Nice it really worked, thank u very much! (by Xnot)
|
by aight
using a classe into an other and conversely
|
|
[2 replies] Last: Thank you! (by aight)
|
by fryejt
Creating a file
|
|
[7 replies] Last: Line 41 for(int n=0; n<d; n++) also causes buffer overrun at line 45... (by Chervil)
|
by kitcas
Need help: Adding value of an int variable between functions.
|
|
[1 reply] : Please use code tags. http://www.cplusplus.com/articles/jEywvCM9/ ... (by integralfx)
|
by JUAN DENT
Why is virtual inheritance named "virtual"?
|
|
[no replies]
|
by akron1
helpppp!
|
|
[3 replies] Last: What do you have now? (by Codach)
|
HELP!!!!! |
|
[1 reply] : Lets be honest: you have homework to do. You and nobody else. Start b... (by keskiverto)
|
by ldab0512
why isn't this code working? (composite numbers)
|
|
[2 replies] Last: (1) set status = false before the for loop, not in an else arrangement... (by lastchance)
|
by sylvain
How do you clear the screen being in a file
|
|
[6 replies] Last: Cheers mbozzi - too many late nights for me; I intended to write cstdl... (by lastchance)
|
by MrinalVig
Setting parameters on command line?
|
|
[4 replies] Last: This is what the assignment prompt looks like: Assignment: LinAppleS... (by MrinalVig)
|
by billy606
Pythagorean Triples Program
|
|
[12 replies] Last: Dickson's method: https://en.wikipedia.org/wiki/Formulas_for_generatin... (by JLBorges)
|
by DragonOsman
What's wrong with my code here? (Sieve of Eratosthenes)
|
|
[10 replies] Last: Wouldn't that be bad (for the names and scores one)? If we delete the... (by DragonOsman)
|
by bp04
Error in stdint.h
|
|
[7 replies] Last: Thanks for the reply. In that case it looks like a problem with the c... (by Chervil)
|
by abrooks2034
Not enough arguements
|
|
[4 replies] Last: double ix, iy, iz, iw, ib; Should be : double ix = 0, iy = 0, iz ... (by SakurasouBusters)
|
by youngldoe
How do I print out the info from a class??
|
|
[1 reply] : You could write an input taking function: void input_Person_data( ... (by nuderobmonkey)
|
by xuwqiang1994
cin problem
|
|
[1 reply] : while (cin >> s) l.push_back(s); Should be : if (cin >> s) l.push... (by SakurasouBusters)
|