by ayleeta
No Matching Function for call?
|
|
[12 replies] Last: Hello ayleeta, Very good and much better. Watch your indenting and s... (by Handy Andy)
|
by Thesar
Iostream, conversation and exceptions (1,2)
|
|
[21 replies] Last: Hello Thesar, You are welcome. Wish I did, but I line in the US. An... (by Handy Andy)
|
by illy2112
ceiling floor and round as const int - Need Help
|
|
[2 replies] Last: it's for ease of use with constructs like switch statements, which a... (by icy1)
|
by samtheman
std vs cout:
|
|
[1 reply] : std::string ends = "*****\n"; std::string mids = "* *\n"; creates... (by sciman777)
|
by garza07
Implement Mathematical Function
|
|
[8 replies] Last: #include <iostream> using namespace std; double series( unsigned x )... (by lastchance)
|
by sr2cute702
g++ compiler error help, Matrix multiplication
|
|
[8 replies] Last: thank you for all the replies, and i am not allowed to use Vectors yet... (by sr2cute702)
|
by mrphilipp7
Can't get getline() to work
|
|
[1 reply] : When I tried using cin>> it worked but I need to read a full sentence.... (by mrphilipp7)
|
by Elarionus
The difference between pointers and asterisk pointers?
|
|
[1 reply] : First thing's first: A pointer is simply an address in memory . Tha... (by Ganado)
|
by garza07
............
|
|
[2 replies] Last: /././././. (by garza07)
|
by Gr8Tortuga
Assistance With Classes (This is to help understand for my Studies - applies to homework)
|
|
[3 replies] Last: @Gr8Tortuga, classes, conceptually, are for packaging pertinent data t... (by icy1)
|
by BeginnerP
What is the difference between 100 and 0100 in binary?
|
|
[3 replies] Last: Just to be explicit, there is no difference between 100 and 0100 in bi... (by MikeyBoy)
|
by BeginnerP
Recursive Function Problem
|
|
[2 replies] Last: Might be better off storing it all in one structure and only print onc... (by icy1)
|
by voro
Getline While loop not working properly
|
|
[2 replies] Last: Hello voro, As lastchance said the semi-colon at the end of 18 only d... (by Handy Andy)
|
by sam1222
Taking scores from text file to create averages
|
|
[2 replies] Last: Hello sam1222, After reviewing your code I found: <conio.h> This hea... (by Handy Andy)
|
by newguy17
infix to postfix output problem
|
|
[6 replies] Last: @newguy17, I'd avoid doing cin stuff for now. Just have a bunch of ha... (by icy1)
|
by fivestar
Function not declared in scope
|
|
[3 replies] Last: im getting an error saying prepend was not declared in the scope. Ha... (by Enoizat)
|
by sethfrias
Baby name rank
|
|
[6 replies] Last: 1) I think your displayRank() function doesn’t need to return anythi... (by Enoizat)
|
by WalterCC
Closed and Open Intervals
|
|
[2 replies] Last: thank you. !!!!!!!!! (by WalterCC)
|
by nearc
How to create file
|
|
[1 reply] : #include <iostream> #include <fstream> #include <iomanip> #include <v... (by lastchance)
|
by grumpyw
How to stop user from entering a same number twice?
|
|
[2 replies] Last: Use a std::set<int> to hold the numbers which were already entered, ... (by JLBorges)
|