by atreyucurses
How to remove characters from char?
|
|
[11 replies] Last: I know it's helpful, but it's still abstraction. But a C++ string is ... (by chrisname)
|
by baphomet90
program wont solve
|
|
[19 replies] Last: I would recommend using cout.fill() instead of cout << "-=-=-=-"; (by superusr)
|
by TunaPete
Sorting indices of a matrix with qsort
|
|
[3 replies] Last: You're welcome. Beware that I just typed that in. Some revision mig... (by Duthomhas)
|
by jinjin12
how to access and individual item from a stack?
|
|
[2 replies] Last: You can pop until the position you want to check and then push everyth... (by Bazzy)
|
by rapduty
Need program that uses Pointers for Int, double & Char
|
|
[3 replies] Last: *(++ip) means that ip will point at a different adress that u have not... (by TunaPete)
|
by TunaPete
Using header files for functions (a question of style)
|
|
[4 replies] Last: Thanks a lot! interesting to see some real code :). The functions are ... (by TunaPete)
|
by rijia
Decrypting stream cipher in a simple program.
|
|
[4 replies] Last: I should get lostpedia as the decrypted text, instead of that i get ... (by rijia)
|
by ajbrumbles
Printing to the screen.
|
|
[1 reply] : First: please put the code in code tags, it makes it much more readabl... (by closed account jwC5fSEw)
|
by Pugnap00
adjacency matrix row loop
|
|
[1 reply] : Never mind i figured it out, i feel so air headed. void WtGraph:: ... (by Pugnap00)
|
by mbrinkley
Something is wrong with my loop....
|
|
[2 replies] Last: I'm sorry. I just tried that and it asks for a student name, then for... (by mbrinkley)
|
by radikll
Odd errors - linked list headache
|
|
[6 replies] Last: Thanks, I was looking at an example while doing this. I thought in.get... (by radikll)
|
by Snooze
Completely Stuck (1,2,3)
|
|
[41 replies] Last: Thanks :] Got it working now. (by Snooze)
|
by uiberto
problem adding objects to std::vector
|
|
[4 replies] Last: Howdy, I botched this one. I went ahead and rewrote it as a simp... (by uiberto)
|
by stavros
Conceptual explanation of: double (*p)[3][4] = new double [2][3][4]
|
|
[9 replies] Last: THANK YOU! (by stavros)
|
by gregarion
Problem with reading input.
|
|
[2 replies] Last: Consider switching the order of the statement as a general practice. I... (by kempofighter)
|
by Somarl
Problems with sort() (1,2)
|
|
[30 replies] Last: Somarl, in the original example you created a vector of 9 elements but... (by kempofighter)
|
Find lowest index in array |
|
[4 replies] Last: A better way would be to #define constants, or use iterators when goi... (by kempofighter)
|
by kevin06s
Console Application Beta Testing
|
|
[1 reply] : The ctrl-c command is notorious for closing console applications. /jo... (by tummychow)
|
if-else if, What am I doing wrong here? |
|
[7 replies] Last: I'm going to go back and add in the logic for greater than 100 and les... (by killingthemonkey)
|
by General
program .. determine if the year is leap or not
|
|
[7 replies] Last: #include <iostream> using namespace std; int main () { int year; ... (by Pmishra)
|