by whitenite1
Check for (improved) winning moves
|
|
[5 replies] Last: @Smac89 That worked beautifully for the rows. I'm now tweaking it for... (by whitenite1)
|
Help using Regex |
|
[7 replies] Last: Ah, sweet. I'll update my GCC as soon as I get home next week. (by Duthomhas)
|
by nboch12
External component randomly throwing an exception
|
|
[2 replies] Last: Well I'm working on code that I had no part in writing originally, and... (by nboch12)
|
by hooshdar3
expected primary-expression before "int"
|
|
[6 replies] Last: The important thing is that the compiler identifies the line and point... (by Chervil)
|
by hooshdar3
infinite loop?
|
|
[2 replies] Last: Yes Peter, I did it, and it worked!Thanks! (by hooshdar3)
|
by patrikgwet
friendship from derived class method to base class members
|
|
[3 replies] Last: That is not an ideal solution, what they came up with is such an ugly ... (by closed account 10X9216C)
|
by gomanth
reference
|
|
[2 replies] Last: Yep just like Mikey said, re-read c++ reference also you can use the t... (by Uk Marine)
|
by justapis
RC4 with ULE-frame
|
|
[no replies]
|
arrays |
|
[5 replies] Last: You could just make a variable like int index = 0; or use value sinc... (by BHX)
|
Count characters, vowels, consonants, etc. |
|
[2 replies] Last: This isVowel function has less code and does the same thing: bool is... (by Smac89)
|
by superiq
Help! srand (time(0)); not working-- Random color picker
|
|
[7 replies] Last: I used the srand (time(0)); statement but it still gives me the same... (by cire)
|
by Rwilborn
Algorithm producing wrong output
|
|
[1 reply] : You are using uninitialized data. M = new int[pouch_size + 1]; just... (by ne555)
|
by littlelamb
Integer to String
|
|
[4 replies] Last: C++11: #include <string> int x = 72; std::string s = std::to_strin... (by Duthomhas)
|
by hooshdar3
string
|
|
[2 replies] Last: A 'const char *' is just a constant pointer to the memory location of ... (by Yay295)
|
Question about the term: "Translation Unit". Help me sound smart! |
|
[4 replies] Last: @ jlb : Yeah, it's that second quote you have that threw me off, alon... (by Computergeek01)
|
by Foxfire
open a thousand .dat files for input operations
|
|
[12 replies] Last: p.s. the program (finally) works, the problem was the memory freeing (... (by Foxfire)
|
by Horscht
Rectangle class width/height problems because of floating point errors
|
|
[10 replies] Last: I just rewrote my code to use width and height instead of right and b... (by MikeyBoy)
|
by xystus
A string array... with more than 1 string?
|
|
[8 replies] Last: To answer your earlier question about vectors, not having to know the ... (by Computergeek01)
|
by newww0
generating integer array
|
|
[2 replies] Last: What compiler do you have ? No modern compiler will let you compile t... (by modoran)
|
splitting a string in c++ |
|
[6 replies] Last: Use something like this if your compiler does not support c++11: #inc... (by modoran)
|