by ohfinite
simple math program
|
|
[5 replies] Last: bump. help please (by ohfinite)
|
by Jose94ji
Help understanding line in code
|
|
[2 replies] Last: It's very hard to read this code, since there is a lack of indentation... (by Chervil)
|
by kong288
Quick question about a loop.
|
|
[3 replies] Last: @kong288 - Try it this way: #include <iostream> using std::cout; usin... (by norm b)
|
How to pass this class as an argument? |
|
[2 replies] Last: Hey, thanks for the suggestion. I managed to figure it out and keep th... (by catalanor0220)
|
by thepox
File I/O and While Statement
|
|
[5 replies] Last: Don't read a file like this: while (!num_list.eof()) { num_list... (by MetalMilitia)
|
by CRock
Handle Ctrl+Z input
|
|
[7 replies] Last: Great! Thanks to all for the help! (by CRock)
|
by Bdanielz
reading delmitited file to char array help
|
|
[no replies]
|
by iliya24
Structs
|
|
[1 reply] : That one is creating an object called NODE It is the same thing as no... (by giblit)
|
by GRex2595
Desperate for help on homework
|
|
[no replies]
|
by cshu
queue problem
|
|
[no replies]
|
by ahmarajeel
constructors
|
|
[1 reply] : http://stackoverflow.com/questions/9336209/mixing-ifstream-getline-and... (by MiiNiPaa)
|
by mightymeowth
can i use a stringstream in this problem?
|
|
[1 reply] : A stringstream might be more than enough, a std::string would suffice.... (by Chervil)
|
by tahanaqvi
is my class defination right?? plz rep fast anyone....
|
|
[8 replies] Last: Only thing to add would probably be: void set_ac_holder_name(string& ... (by rdtr3548)
|
by dkarayof
Temperature Conversion problem
|
|
[3 replies] Last: I also fixed all the if statements (same problem as the while loop, i ... (by dkarayof)
|
by nbnit
beginner Tic Tac Toe Game
|
|
[1 reply] : I hope that works: #include <iostream> #include <string> using nam... (by closed account 1v5E3TCk)
|
by Tooflyforyou
Student Grades Program
|
|
[no replies]
|
by Doc 4141
Nested loop
|
|
[no replies]
|
Comparing two arrays |
|
[2 replies] Last: So you take two array of characters that the user input lines 8 and 10... (by andyman105070)
|
by AInoob
This code can not execute well in Ubuntu, but did work in Windows
|
|
[5 replies] Last: Thanks, I am now using gdb to debug this program, I think I find somet... (by AInoob)
|
Assist with while looping |
|
[5 replies] Last: Change line 19: else if (k = 9) to: else if (k == 9) ... (by ShodanHo)
|