by joeyjojo
looping through a 2d double linked list
|
|
[1 reply] : nevermind figured out my noob mistake...... (by joeyjojo)
|
by joeyjojo
While loop with EOF()
|
|
[2 replies] Last: Don't loop on EOF. char c; while (fileIn.get( c )) { ... } ... (by Duthomhas)
|
by a friend
cin problem
|
|
[6 replies] Last: @a friend: cin<< will seperate inputs by spaces, so basically you don... (by hanst99)
|
by doolsta111
navigate 2D doubly linked lists
|
|
[1 reply] : Why don't you use vectors? It will be easier for you since you can use... (by m4ster r0shi)
|
by whiterose
question recursive of function
|
|
[2 replies] Last: @magni: Look at the way the question was asked, and you have the answe... (by hanst99)
|
by Tzarls
Dungeon Exercise - open for comments (1,2,3)
|
|
[40 replies] Last: @Tzarls - I just used a struct to make it smaller for the demo. If I... (by Mythios)
|
by spdbump08
inputting from a text file
|
|
[1 reply] : Do you code like that? That's just torturous.... #include <iostrea... (by closed account S6k9GNh0)
|
by TheTSPSolver
Creating a DAG using BGL
|
|
[2 replies] Last: 1) In C++ class/struct are the same, except classes default to private... (by firedraco)
|
by TechMonkey
My BMI calculator wont work but I do not see whats wrong
|
|
[5 replies] Last: double is a (fundamental) data type . It is used to hold numbers wi... (by m4ster r0shi)
|
by Nelo87
getline( cin, exp) problems
|
|
[3 replies] Last: stefanmielke is right. Add while (cin.get()!='\n'); after cin>>choi... (by m4ster r0shi)
|
by S7rawMan
Inputing data into a file Issue
|
|
[2 replies] Last: Thanx roshi, That worked out wonderful. just had to throw another anot... (by S7rawMan)
|
by EEVIAC
calculating factorials with FOR LOOP
|
|
[2 replies] Last: That makes sense! I can't believe that's all it took to get me to und... (by EEVIAC)
|