by breich2
matching game: keeping matches visible
|
|
[2 replies] Last: Still not it completely, but beautiful code... that was a better shuff... (by breich2)
|
by tginter
Candidate Program
|
|
[5 replies] Last: Well you know how to itterate through the array, its pretty much the s... (by LendraDwi)
|
by RAVSHAN02
Need Help about code confusion
|
|
[1 reply] : getline() is just an embedded function. It has it's uses. but really ... (by nadurraXII)
|
by RAVSHAN02
Need Help with Basic Calculator
|
|
[5 replies] Last: If you are using visual studio 2013... you want to "start without debu... (by nadurraXII)
|
by jeremyFisher
Calling overloaded operator from class
|
|
[4 replies] Last: Nope -- C++ does not remember variable names. The names is source code... (by andywestken)
|
by hamkid
Applying arrays to encode a string
|
|
[1 reply] : % is the modulo operator. It returns the remainder in a division betwe... (by maeriden)
|
by elkinscoder
Why do I need a dynamic array?
|
|
[2 replies] Last: Actually this "feature" didn't make it into the standard. VLA are stil... (by jlb)
|
by dpr9966
Function that changes the last value of an array
|
|
[1 reply] : You specified that the third parameter of 'change' is a pointer to int... (by maeriden)
|
by ahmed55
cout a char after a number avoiding pressing enter
|
|
[1 reply] : Google "c++ unbuffered input" http://stackoverflow.com/questions/4218... (by maeriden)
|
by dpr9966
Function that returns true if even or zero and false otherwise
|
|
[2 replies] Last: What do you expect the output to be? Your y variable is uninitialized.... (by Ganado)
|
by Celtic222
Passing pointers to function
|
|
[4 replies] Last: current->next = temp; //current is now pointing to temp current->nex... (by maeriden)
|
Code skipping - function problem? |
|
[3 replies] Last: Look closer at line 51 and 52 and The problem may not be syntax but... (by lukecplusplus)
|
by DtownC
Problem with If in Loop to produce Error
|
|
[6 replies] Last: Not working either and the for loop has me way worse off than I was be... (by DtownC)
|
by c4l
Need help with a maze game project
|
|
[3 replies] Last: Line 12: What does return0h return if none of the cells are 0? Line ... (by AbstractionAnon)
|
by wedoboop
Working on a new program
|
|
[no replies]
|
by dpr9966
Why does this result in an error
|
|
[1 reply] : Your function return type is void that means it dont return anything (by LendraDwi)
|
by idenatin
Question about Boolean
|
|
[3 replies] Last: Figured it out! Thanks! (by idenatin)
|
by radgx
chance
|
|
[1 reply] : 1. You can create another random int ranging 1 to 10, then multiply ... (by LendraDwi)
|
by agadon97
conversion program
|
|
[3 replies] Last: n here is float not char, try change it to char and remove some unused... (by LendraDwi)
|
by zxcasd
searching in a string
|
|
[1 reply] : http://www.cplusplus.com/reference/string/string/find/ (by mutexe)
|