by mimou89
code with c++ 2008
|
|
[3 replies] Last: the EventHandler for the button would look something like: private: ... (by closed account z05DSL3A)
|
creating two exe. from one code |
|
[11 replies] Last: thanks Duoas (by satyamkrishna2004)
|
by Blessman11
Creating an array at runtime
|
|
[13 replies] Last: I see that dptr is an array of double pointers, of size 1, but on cons... (by Moschops)
|
by DrCake
School assignment
|
|
[5 replies] Last: << is a bitwise operator. It shifts the bit in a byte to the left, co... (by john2)
|
by tonnot
A forward problem case 1 works case 2 not
|
|
[1 reply] : Even your explanation is not good enough to answer your question, from... (by richardforc)
|
by thiagosort
Creating objects
|
|
[2 replies] Last: On a related note, in this code: if(key='B'){ Bird b("blue");... (by Moschops)
|
by tonnot
Forward declaration
|
|
[1 reply] : There is none. (by Athar)
|
by spentak
Constructor -initialize this class into an empty class?
|
|
[3 replies] Last: You can using a char array "myString" to store string. if myString i... (by guevara)
|
by Caesar1
srand
|
|
[2 replies] Last: Thank you! That was rather obvious, I should've seen that. Thanks ag... (by Caesar1)
|
by joro550
Should this work??
|
|
[1 reply] : Yes, it should, but the virtual keyword is not necessary because you'r... (by filipe)
|
by spentak
Can't assign "const char*" to an entity of type "char*"
|
|
[4 replies] Last: I see. Because assigning that pointer would give myString access to t... (by spentak)
|
Encoder? |
|
[1 reply] : Replace s with the name of your string. for(int i=0;i<s.length();i++... (by rocketboy9000)
|
by la9113
decryption program
|
|
[4 replies] Last: Yeah, you take the integer value and cast it to a char, but if that's ... (by Computergeek01)
|
by rynus98
Recomendations for c++ class
|
|
[4 replies] Last: If your school offers a Computer Science class, then you should take i... (by Browni3141)
|
SFML |
|
[3 replies] Last: If you're using VS, you can make your own header that has something li... (by Disch)
|
by CoBSaD
Finding multiples of 3 under 1000.
|
|
[12 replies] Last: @Browni3141: Typically I'm against posting whole solutions to assignme... (by Zaita)
|
How do you make a level editor? |
|
[11 replies] Last: My thought about this is that level editors are for the people who don... (by Computergeek01)
|
by beaver55
reseting a stack (1,2)
|
|
[22 replies] Last: why not make std::vector (and std::string) built in to the language a... (by jsmith)
|
by Blessman11
Sorry, Re- Multi dimensional vector array
|
|
[3 replies] Last: To follow on, I suggest you use a shared_ptr<> (www.boost.org) or an a... (by Zaita)
|
by skendrick92
Quadratic equation
|
|
[2 replies] Last: http://www.cplusplus.com/reference/clibrary/cmath/sqrt/ (by Toothkiller)
|