While loop pausing, or ignoring the loop condition all together. |
|
[4 replies] Last: *Facepalm* Alright, thank you all so much. It works now. Also, sorr... (by Popplelopolis)
|
Problem with conversion programme |
|
[3 replies] Last: Cheers for the replies, guys. @Albatross - I've heard of std::strin... (by declanmcerlane)
|
by rhymejerky
concat char *
|
|
[3 replies] Last: For the first question: A 'char*' is a 'char '. The problem is you ca... (by sadavied)
|
by rem45acp
const void * to std::wstring
|
|
[4 replies] Last: I've been meaning to write a small lightweight UTF conversion lib for ... (by Disch)
|
by Bman900
feof reading last line twice
|
|
[4 replies] Last: In Bazzy's example, you read from the file, then exit if you are at th... (by Zhuge)
|
by Metallon
Why can't I access private members in a derived class?
|
|
[2 replies] Last: That solved it. Thanks! (by Metallon)
|
by firebird1
Fusion sorting algorithm
|
|
[no replies]
|
by dexterof
What that means ?
|
|
[2 replies] Last: Your class thinks that it's an array of object of the same class (by ne555)
|
by Metallon
Should this function be a member function or friend?
|
|
[4 replies] Last: I think I'll make Betting a member function of Player. "Messy" thou... (by Metallon)
|
by hitmanben2
what does this code do?
|
|
[3 replies] Last: Thanks Guys i get it now thanks to your . (by hitmanben2)
|
by sponky
game network libraries?
|
|
[1 reply] : SFML has networking: http://www.sfml-dev.org/ (by Disch)
|
by qwe123
2D array/vector
|
|
[1 reply] : Arrays must have constant length. See http://www.cplusplus.com/forum/... (by hamsterman)
|
by Vanquish39
Sort Method
|
|
[3 replies] Last: Also, std::multiset is a container that will give you this ordering au... (by jsmith)
|
by kikirikou
Which things are created when an class object is created?
|
|
[2 replies] Last: What you meant was more like "Which things are created by default when... (by hamsterman)
|
by eamo2020
Array
|
|
[5 replies] Last: In C++, you don't need to do that int main() { long array ; ... (by stereoMatching)
|
by empror9
questions in vector & class
|
|
[9 replies] Last: Ok, you may try this: http://www.cplusplus.com/forum/beginner/34289/#m... (by coder777)
|
by LoOpz
getline(cin,string[array])
|
|
[2 replies] Last: Thanks, ill use it. (by LoOpz)
|
by Bman900
Reversing a word?
|
|
[1 reply] : The end of a C-Style character string is indicated with a zero value. ... (by Moschops)
|
by Sandermatt
Import A tiff file
|
|
[3 replies] Last: Libtiff is mightily useful for importing TIFF images: http://www.c... (by Moschops)
|
by CCNezin
How to make rand generation exclude certain values?
|
|
[17 replies] Last: /**do { row1 = rand() % 9+1; } while((row1 == row1 ) || (row1 ... (by ne555)
|