by gingging
Help me understand the code
|
|
[2 replies] Last: Yeah, thx! after reading your comment and searching around a little bi... (by gingging)
|
by idknuttin
how to keep track of points without using an array?
|
|
[5 replies] Last: Looks like there are a few issues in line 45 - double check your sourc... (by PCrumley48)
|
by idknuttin
how to use while(inFile.good()) to keep track of points and sums
|
|
[1 reply] : '.' symbol is decimal separator. 2.2 is read as single floating poin... (by MiiNiPaa)
|
by omikron
Random number generator
|
|
[10 replies] Last: Ah, my bad. use this: static std::mt19937 gen(std::random_device{}())... (by MiiNiPaa)
|
by srscode
const char pointer
|
|
[3 replies] Last: Overloaded functions are a number of functions (or operators) with the... (by Peter87)
|
by drax
vector
|
|
[3 replies] Last: I apologize for not making myself clear, but you assumed right, thank ... (by drax)
|
by ridahel
write in the cin as much numbers as i want
|
|
[no replies]
|
by wuubb
is there a better way to write this function?
|
|
[2 replies] Last: Thanks mate, I really appreciate it! I'll definitely "look up" what a... (by wuubb)
|
by rayna
I need help with output manipulation.
|
|
[4 replies] Last: Try this. #include <iostream> using std::cout; using std::cin; usin... (by HatchetMan302)
|
by wiswis
convert string to double
|
|
[1 reply] : ifstream infile; infile.open("C++ Data File.txt"); double ... (by anup30)
|
by rahul135
String reverse
|
|
[2 replies] Last: got it.. thanks.. (by rahul135)
|
by JoJodoggy1
Left sided Diamond
|
|
[12 replies] Last: yep (by JoJodoggy1)
|
by specter113
Help in looping files...
|
|
[4 replies] Last: A loop ends when a condition is met that makes it false. For example,... (by disturbedfuel15)
|
by sbas10
Starting Out With C++(7.5)
|
|
[8 replies] Last: you are right MinniPaa. i meant It will not work, is wrong term. su... (by anup30)
|
by goldyn
Reverse array
|
|
[7 replies] Last: @giblit you are right, now i see it haha. For some reason i just assum... (by Jacobhaha)
|
by cyter
Invalid pointer error thrown on freeing pointers of pointer array.
|
|
[1 reply] : You are trying to free pointers to character literals, which is illega... (by MiiNiPaa)
|
by gibnihtmus
Memory Leak with linked lists
|
|
[2 replies] Last: I actually just figured it out. I think I was calling _CrtDumpMemoryLe... (by gibnihtmus)
|
by brenP
Calculation Error in findLowest() and findHighest()
|
|
[1 reply] : Hmm. What if there were 9 judges instead of 5? The code would start ... (by dhayden)
|
NIM GAME |
|
[2 replies] Last: I might have it figured it out, though the problem I'm having is with ... (by CuteComputerXx)
|
by Rashad2
virtual class help.
|
|
[3 replies] Last: In class polygon: I suspect that perimeter and area should be abstra... (by dhayden)
|