by CodeBugs
Namespace problem (I think 1!)
|
|
[4 replies] Last: There is never any situation where you need to have circular includes.... (by Disch)
|
by Impacatus
Polymorphism question
|
|
[5 replies] Last: The idea was that when it came to saving pointers, I'd just have to re... (by Impacatus)
|
by cnewby
read from file and output to 2D array
|
|
[6 replies] Last: Cool! Thanks so much for the help! (by cnewby)
|
Reverse string with Pointers |
|
[3 replies] Last: Thanks for the help. I figured the assigning the temporary variable. A... (by chasescoot066)
|
by Retro94
Criticize my calculator please.
|
|
[4 replies] Last: Ok, thanks very much everyone. I read up on ending my programs, and am... (by Retro94)
|
by cnewby
updating an array
|
|
[4 replies] Last: multidimention arrays = YUK YUK YUK If you are using pointers you c... (by Disch)
|
by felipe21
Best way to create "modes"
|
|
[3 replies] Last: That's what I do. (by Disch)
|
by MiaZas
saving and loading vectors from a file
|
|
[3 replies] Last: Line 80: getline(inputFile, Numbers[ i ] ); Numbers is a vector<... (by Bazzy)
|
by benji00za
power factor function
|
|
[no replies]
|
by robman8855
can i use class instance variables in functions that aren't part of the class?
|
|
[8 replies] Last: sry webjose i normally would but i'm away from my compiler for a few d... (by robman8855)
|
by FireFreek
creating a palindrome program
|
|
[4 replies] Last: Come on, Google is making billions for a reason. http://www.cpluspl... (by webJose)
|
by ricky92
Error: segmentation fault
|
|
[3 replies] Last: I don't see any problems with the code that would cause a segmentation... (by kempofighter)
|
by nathanpc
Simple Download Program
|
|
[1 reply] : That's what libcurl is for. Actually, you've asked this, already. (by helios)
|
by MiaZas
binary vs. decimal
|
|
[2 replies] Last: You can also read this: http://www.cplusplus.com/doc/hex/ (by Bazzy)
|
by MiaZas
arrays and memory
|
|
[1 reply] : Array elements are by definition in adjacent memory locations. A li... (by helios)
|
by MiaZas
nested loops
|
|
[5 replies] Last: Returning a Boolean value means that it either returns true or false, ... (by MiaZas)
|
by btmorr
cout causing a variable's value to change
|
|
[3 replies] Last: Thanks for the quick response. Sounds like I'm in for a "fun" afterno... (by btmorr)
|
by Terviseks
Exercise: map<K, V> m(cmp)
|
|
[2 replies] Last: Thanks for the answer, but I can't use those things. I'm trying to use... (by Terviseks)
|
by Null
How do i know if a variable is in register?
|
|
[4 replies] Last: Thank you for help (by Null)
|
Using Templates to define classes in C++ |
|
[6 replies] Last: Think about it this way. Say you have template< typename T > ... (by jsmith)
|