by Rick810
Dealing with Functions
|
|
[1 reply] : You didn't include the header. #include <string> edit: A... (by AbstractionAnon)
|
by Paoletti301
Quick question about classes
|
|
[no replies]
|
by Woodchopper
int main() versus short main()?
|
|
[6 replies] Last: BTW, don't return negative numbers from main(). It attracts bad karma. (by Duthomhas)
|
by SoftMOUNT
Array Initialization
|
|
[2 replies] Last: When describing an array of X arrays of Y something, people often vie... (by SoftMOUNT)
|
by theblackdog
SDL make an movable Image
|
|
[12 replies] Last: Yep I know. Please hit me with something for my stupidity. thank you ... (by theblackdog)
|
by afleury1
Not factoring in uppercase...
|
|
[3 replies] Last: Change cout << tolower(str ,loc); to str = tolower(str ,loc); cout... (by kevinkjt2000)
|
by treefitty
Faster way of scaling-up an image before render? (SDL)
|
|
[5 replies] Last: I haven't looked at SDL 2.0 in great detail so I can't say whether or ... (by Disch)
|
by afleury1
compute short, int, long using pow
|
|
[4 replies] Last: Check out http://www.cplusplus.com/reference/climits/ This may help y... (by Stewbond)
|
by mosahab
returnning passed array from a function
|
|
[3 replies] Last: You can return a bool value from the function that will report whethe... (by vlad from moscow)
|
by Joe Limon
Extracting Numbers From A String
|
|
[2 replies] Last: You can make a std::istringstream from a string (the number in string ... (by LB)
|
by hellcoder
defining constructor outside the class
|
|
[2 replies] Last: got you thanks! (by hellcoder)
|
by hellcoder
benefit of constant member functon
|
|
[3 replies] Last: is there any benefit (in sense of running time or anything else) to d... (by andywestken)
|
by hellcoder
memory allocations
|
|
[10 replies] Last: Both the compilers are gcc-4.8.1 I did not think about the read only m... (by kevinkjt2000)
|
by jenaf
C Noob question: scanf("%s") leaves trash in stdin
|
|
[3 replies] Last: the char * was a result of me wanting to malloc first and then decied... (by jenaf)
|
by Cydriic
How to output Text with SDL2
|
|
[no replies]
|
Visual Basic |
|
[3 replies] Last: You can hand write code in VBA. It is not too difficult. (by kevinkjt2000)
|
by ASCII14
help!
|
|
[7 replies] Last: [quote=man] -Wmissing-prototypes (C and Objective-C only) Wa... (by ne555)
|
by Uk Marine
someone explain this code for me please!
|
|
[3 replies] Last: Thank you so much both of you, now i understand :-) (by Uk Marine)
|
by mudasir007
Noob question
|
|
[9 replies] Last: I would also recommend mingw fow Windows users. My personal editor is... (by kevinkjt2000)
|
by sajis997
memcpy failure
|
|
[9 replies] Last: The bottom line is that memcpy on any complex type is not safe. Even ... (by Disch)
|