by hannes
subclass or not?
|
|
[3 replies] Last: My personal opinion is that if the properties you are referring to are... (by jsmith)
|
by chrisben
char*, char[] and string
|
|
[11 replies] Last: In example 1, *iter = std::tolower(*iter); should be *iter = tolowe... (by kbw)
|
by wasabi
Rewinding a FILE pointer
|
|
[3 replies] Last: In a word, no. FILE supports one file pointer. However, you can mo... (by kbw)
|
by ztein
String program problem
|
|
[2 replies] Last: Don't use strcpy and strcat they are meant for char*. Use the std::st... (by garob)
|
by JRevor
Question about constructors!
|
|
[2 replies] Last: And it's worth mentioning also that neither c_ nor e_ will be zeroed u... (by jsmith)
|
by silver chips
Use of Vectors??
|
|
[1 reply] : The best place to go is the documentation http://www.cplusplus.com/re... (by Duthomhas)
|
by Rorschach
What is wrong with this code?
|
|
[2 replies] Last: Oh wow, I don't know how I missed that... Lesson learned: Take breaks! (by Rorschach)
|
by MikeT
Using a vector of objects, can I?
|
|
[10 replies] Last: Yet again thanks Bazza, I've made the changes to not use braces. I ... (by MikeT)
|
by rmunday214
My Calculator Program (Multiplication)
|
|
[no replies]
|
by mjhughesgt
Random Access Violation when reading a location
|
|
[5 replies] Last: So, good suggestion counting the # of times through the for loop, jus... (by helios)
|
by acebgp04
a simple decrypting progarm,,
|
|
[5 replies] Last: Chewbob posted everything you need to understand how to do that... ... (by Bazzy)
|
by Asiatic
How to search files content with c++
|
|
[5 replies] Last: Thanks for all replies guys (by Asiatic)
|
by NickMyers
If And Else Statements Not Working
|
|
[1 reply] : #include <iostream> #include <string> using namespace std; int ... (by rave003)
|
by DKB
Sleep
|
|
[16 replies] Last: I would consider putting the loop in a function that takes a string. (by seymore15074)
|
by iamthefear
Adding two multi dimensional arrays together
|
|
[2 replies] Last: thanks anilpanicker, very helpful :) Will use it for reference. Thank... (by iamthefear)
|
by ogelami
Problems converting chars, byte, strings?
|
|
[4 replies] Last: You'll just have to insert a space after every second character. There... (by Duthomhas)
|
Generate a random sequence |
|
[6 replies] Last: I see... thanks helios.. Teaching to fish is much better in the long ... (by bluezor)
|
by mcb413
Void functions
|
|
[1 reply] : I am sorry if I didn't make myself clear the last time. When you all... (by hamsterman)
|
by gmoney93079
with output error in code or my logic
|
|
[2 replies] Last: #include <iostream> using namespace std; class PlasmaPistol{ ... (by gmoney93079)
|
by JRevor
Question about strings in C++
|
|
[4 replies] Last: You're right. I made a small program, and "something"+number leads to ... (by JRevor)
|