by piulitza
why doesnt it work?
|
|
[3 replies] Last: I mean that you're creating an array without first giving n a value. ... (by scythe)
|
by pentiumpoor
2D dynamic array?
|
|
[1 reply] : You probably want int i = 0; but other then that...have you tried comp... (by firedraco)
|
by batman914
dice roll problem
|
|
[4 replies] Last: A couple of problems with your program. 1. You're for loop only loo... (by Return 0)
|
by tomyfreebie
Question on Wide-character
|
|
[4 replies] Last: Do you realize you can declare one by just doing typedef std::string<... (by helios)
|
by alket
understanding file processing
|
|
[2 replies] Last: Picture the file as a long single queue of characters with a pointer m... (by anders43)
|
by mahi
search in char array
|
|
[8 replies] Last: No problem :) (by hannad)
|
Having problems with classes |
|
[9 replies] Last: A semicolon is missing. Is the point of the question really just to sp... (by Zettai Baka)
|
by isonews
how do i copy the 3 arrays into the fourth array
|
|
[4 replies] Last: So use strcpy() ( http://www.cplusplus.com/reference/clibrary/cstrin... (by Bazzy)
|
by jonestsai
read text file with specifications
|
|
[3 replies] Last: Couldn't you just use a char array to buffer the non-printable charact... (by Zettai Baka)
|
by Foe89
Sorting Parallel Arrays?
|
|
[2 replies] Last: Thanks, took a while to grasp but I got it ^_^ (by Foe89)
|
by Toxic90
C++ extended ASCII
|
|
[5 replies] Last: a shorter way is this: cout << '\xB3'; (by Bazzy)
|
by gulu
Passing parameters, arrays, functions
|
|
[9 replies] Last: Yes thats it.Thank you very mutch helios.I will fix it. P.S:Somethi... (by DarkFire21)
|
by Timbo1
Dev C++ icon trouble
|
|
[1 reply] : What you mean with that? Are you trying to set an icon for your progr... (by Bazzy)
|
by soullady
changing switch statements to if-else statements
|
|
[16 replies] Last: Okay, Whatever. (by hannad)
|
Having trouble assigning value to an array (1,2,3) |
|
[53 replies] Last: Congrats :D (by Mythios)
|
by Zinox
I have a simple code.... error: call of overloaded âabs(int&)â is ambiguous
|
|
[3 replies] Last: Not sure why you are getting the error. I'm in Windows right now w/no... (by jsmith)
|
by mherald81
Breaking a string into tokens
|
|
[4 replies] Last: mherald81 you got a mem leak in your code and other bugs e.g. st... (by anders43)
|
by II15X
Constructing a different .txt using C++
|
|
[1 reply] : humm i am not sure what you mean so here is a guess if you read the... (by anders43)
|
by lipune
c++,thread
|
|
[1 reply] : Look up pthreads in the man pages (pthread_create) or use the platform... (by jsmith)
|
by RawrImALion
My first very simple Binary Tree :)
|
|
[1 reply] : Simplest way is a recursive function. void Print( Tree* node ) {... (by jsmith)
|