by gikiian
This program stops unexpectedly after reaching 'Person 57'. What is the reason?
|
|
[5 replies] Last: Once you start writing past the end of an array, your code enters the ... (by PanGalactic)
|
by chipp
pass by reference
|
|
[7 replies] Last: If you want to pass more than one object, you should use vectors. ... (by Athar)
|
by pooshi
Character replacment in a string
|
|
[5 replies] Last: thanks for the help everyone. I got it. I'm sure its been a while s... (by pooshi)
|
using **Base to hold an array of Derived |
|
[3 replies] Last: Thanks for the reply. A vector<Foo*> will do the job, was just cur... (by roger 2 71828183)
|
by Blessman11
inheritance private
|
|
[5 replies] Last: Best way is to inherit private then using the "using" declarative to s... (by CppSpartan)
|
by Squipix
How do I make a char be read as its ASCII value?
|
|
[2 replies] Last: The user is to enter a series of character variables, such as "2+3", w... (by Squipix)
|
by mainframe639
Simplifying bubble Sort
|
|
[10 replies] Last: Tbh, if you write your program well then cin shouldn't be an error st... (by mainframe639)
|
by Moptop
Conversion to non-scalar type
|
|
[3 replies] Last: http://en.wikipedia.org/wiki/Scalar_%28computing%29 There are many ... (by PanGalactic)
|
by yorktown22
Placing data from a file into a char array
|
|
[no replies]
|
by alecha
General problems
|
|
[1 reply] : - in a Windows Forms application, I need to let every methods know a ... (by coder777)
|
by broot
binary search tree question
|
|
[2 replies] Last: Here you are #include <iostream> #include <map> using names... (by rishabhagl)
|
Trying to get data from file into specific structure members |
|
[4 replies] Last: @crunkjuice210 "r" means file is open in read mode. See this http://w... (by rishabhagl)
|
by Helegurbann
My curser
|
|
[3 replies] Last: prinf('\b') method is binding cursor in bow screen.I tried new metho... (by Helegurbann)
|
by arveen11
Number, Letters and Space Only allowed.
|
|
[no replies]
|
by GulHK
QT related interview questions
|
|
[no replies]
|
by Kapiva
Stopping a character array from printing directly to the screen
|
|
[1 reply] : word = tolower( word ); Though only the first letter can be capit... (by hamsterman)
|
by Failspur
Please reccomend a good compiler?
|
|
[1 reply] : cout and cin aren't supposed to be captialized. You need to include <... (by firedraco)
|
How to use stringstream to output a polynomial? |
|
[7 replies] Last: Call the .str() operator before you return it. You are returning a str... (by Zhuge)
|
by Ice
Read console output
|
|
[1 reply] : You could redirect the output of the program $ ./A.bin | ./B.bin Th... (by ne555)
|
by xanimeangiex
ofstream example not working?
|
|
[2 replies] Last: http://xoax.net/comp/cpp/console/Lesson47.php check the vid (by Blessman11)
|