by Wootenstien
Classes inside classes and Monostates, oh my!
|
|
[3 replies] Last: JLBorges, maybe I misunderstand the OP's question, but I feel the use ... (by Ganado)
|
by Alex1598540
Help understanding some code
|
|
[3 replies] Last: the ascii table is annoying for that. I would just load up a (vector,... (by jonnin)
|
by paulpv278
Error when trying to print out values from vectors
|
|
[14 replies] Last: Thank you very much everyone. (by paulpv278)
|
by assimazza
Converting XMacro into template in C++03
|
|
[no replies]
|
by roger3
Letter count with reference variables! help
|
|
[1 reply] : Can use containers for such things. Even a plain array is ok #inclu... (by elohssa)
|
every time i build it fails? What am I doing wrong |
|
[5 replies] Last: Thanks a bunch to those who helped and to those with rude snarky remar... (by closed account zCR4E3v7)
|
by schmcory
Force the user to enter ONLY an integer
|
|
[2 replies] Last: There are two things that must be understood about input to process th... (by Duthomhas)
|
by Boldjon
C++ practice problem help
|
|
[2 replies] Last: the sample is this http://prntscr.com/ifdik7 I just didn't know how to... (by Boldjon)
|
by CrystalPlu
I need a bit of help with some C++
|
|
[4 replies] Last: Here is my final code #include <iostream> #include <iomanip> #inclu... (by CrystalPlu)
|
by CoffeAddict
C++ Sequence class error
|
|
[1 reply] : The assert that is triggered is on line 106, inside the advance() func... (by Peter87)
|
by briankiprono
sum of fraction
|
|
[4 replies] Last: Input a,b,c,d (however you want). (a/b) + (c/d) = (ad+bc)/(bd) Work ... (by lastchance)
|
Adding Elements at beginning of array |
|
[8 replies] Last: //demonstrates array class with high-level interface Apart from find... (by keskiverto)
|
by moussa
Function call
|
|
[2 replies] Last: Thanks Sergey! (by moussa)
|
by DrewRiddles
PugiXML Parsing
|
|
[1 reply] : Duplicate of http://www.cplusplus.com/forum/beginner/230654/ . Please... (by MikeyBoy)
|
by technologist
Eclipse can't find includes, looking in the wrong place
|
|
[5 replies] Last: The problem may be that you are trying to use a relative path. It woul... (by sm2345110)
|
by mafarooqi
How to print characters in rows and columns?
|
|
[1 reply] : you can use http://www.cplusplus.com/reference/iomanip/setw/ or you ca... (by SamuelAdams)
|
by zeblikin
If a given task being performed by a function involves one object, then that function should normally be a ____ function
|
|
[2 replies] Last: I think you're right with Unary! We have no choices, but this sounds c... (by zeblikin)
|
by ComputerG33k
Program I'm writing
|
|
[2 replies] Last: I should clarify, it does show something, but only "Total money spent"... (by ComputerG33k)
|
by Kalcor
Difference between struct* and struct*&
|
|
[3 replies] Last: in a lot of code, * is sufficient. You only need the & if you plan to... (by jonnin)
|
by httpvictor
Checking tic tac toe winner on a board NxN (1D array)
|
|
[3 replies] Last: access of a 1-d array as if 2-d is simply array[desired_row*numcols+d... (by jonnin)
|