by CDavis
Functions average
|
|
[1 reply] : result = (double) array / 7; You are accessing element with index 7... (by MiiNiPaa)
|
by tdk93
reading from file, prints twice
|
|
[1 reply] : There's a logic error. When the fgets reads the last line from the f... (by Chervil)
|
by rozick1
returning object seg faulting
|
|
[6 replies] Last: Ah, thanks. I removed internal_string = str.internal_string; ... (by rozick1)
|
by Daneos
MS SQL Library?
|
|
[no replies]
|
sorting |
|
[3 replies] Last: Insertion sort is completely different algorithm: http://www.cplusplus... (by MiiNiPaa)
|
by CrazyCrinkle
Trying to use example code, is it broken?
|
|
[7 replies] Last: When you use an external library, there are two steps: 1. You need t... (by Stewbond)
|
by lays
Does read and write in fstream has buffer internally?
|
|
[2 replies] Last: Although the buffering will help enormously with the efficiency, copyi... (by Chervil)
|
by Bluebaron
Help sorting/char arrays only
|
|
[2 replies] Last: And to add to that, since you don't have plain chars you need a functi... (by Serious Sam)
|
by simpsons
subtract one array from another
|
|
[3 replies] Last: You could make a third array in the function, then copy all values of ... (by Serious Sam)
|
by h4ever
best practise to work with path
|
|
[1 reply] : Isn't this platform dependent? ./testdir should work on Linux, but I d... (by Serious Sam)
|
by Eng Heba
Compress array of BCD values /C++
|
|
[no replies]
|
by mehak
Inheritance
|
|
[3 replies] Last: Just like the other answers, I see two differences: First optional p... (by Stewbond)
|
by Kevin2341
Fibonacci numbers using doubly linked lists
|
|
[3 replies] Last: The normal way to do this would be to use a: class BigInt { public: ... (by cire)
|
by Stoneynine
don't know what's wrong, compiles and runs but breaks
|
|
[1 reply] : You have several functions that promise to return values, but don't al... (by cire)
|
by Plank23
vector
|
|
[2 replies] Last: I am also interesting about this syntax. I guess it's using C++11 syn... (by h4ever)
|
by mehak
possible permutations of a string
|
|
[2 replies] Last: oh tht where i made a mistake.tnx alot (by mehak)
|
by TweedleGun
Linked Lists in Classes - Program Not Working
|
|
[2 replies] Last: Thank you sooo much, kind sir!! Fixed my problem, plus, I was getting ... (by TweedleGun)
|
by lexie21
Random numbers
|
|
[1 reply] : You need to seed a rand() function, however you will have to add a lib... (by Jakee)
|
by Bluebaron
Creating Strings from char arrays
|
|
[9 replies] Last: Thank you. That helped. (by Bluebaron)
|
by Youbob1212
Need Help with this simple math problem
|
|
[2 replies] Last: I figure it out. Sorry I posted too soon. Here is my working program ... (by Youbob1212)
|