by queen
C++ assignment
|
|
[1 reply] : You should make a function that given some parameters of you and of th... (by Bazzy)
|
by varyant
sequential search issue
|
|
[no replies]
|
by gantsooj
to take array elements from function
|
|
[1 reply] : Array's are constant pointers. That means that you can pass an array t... (by Scipio)
|
by zak79
Exclude STL from debug
|
|
[no replies]
|
by roodtree
how to sort the array bu heapsort
|
|
[2 replies] Last: Google is bad...don't use it translate please... (by firedraco)
|
by translore
Getting Error when passing by reference
|
|
[2 replies] Last: Thank you! (by translore)
|
by Hazer
Password program
|
|
[6 replies] Last: Also, if the password is stored as plaintext in memory, someone could ... (by firedraco)
|
by gluballs
template link error
|
|
[2 replies] Last: oops sorry template<_DataType> was a typo. your fix solved my probl... (by gluballs)
|
by chni
[SOLVED] Overload operator<< : no match for ‘operator<<’
|
|
[4 replies] Last: @Disch, helios: Thank you very much for your help. I did not think of ... (by chni)
|
by htonivi
Detect memory leak of a running process
|
|
[1 reply] : The easiest way is using a system monitor and see how much memory the ... (by helios)
|
by Mortvola
Using std::string with exceptions disabled
|
|
[6 replies] Last: I guess I will have to give it a whirl. I'm developing on an ARM 9 en... (by Mortvola)
|
Should delete be done after failed new? |
|
[1 reply] : The normal way to assign memory to a pointer (using nothrow): int ... (by Scipio)
|
by jer17
Palindrome problem
|
|
[1 reply] : My suggestion: 1.) Copy the string 2.) replace each occurence of ("n... (by onur)
|
by muster
id for a hashtable
|
|
[5 replies] Last: This is a classic "hashclash" problem. Hash tables make inserting/retr... (by n4nature)
|
by Whando
Wavelet Source Code
|
|
[no replies]
|
by Whando
Text File Into Arrays
|
|
[3 replies] Last: Thanks that is great! (by Whando)
|
by scottwuzhear
Pointers and Vectors
|
|
[2 replies] Last: You probably want to brush up on iterators. See http://www.cplusplus.... (by kbw)
|
by Mythios
Drawing a line between 2 points in a console
|
|
[1 reply] : Just got it working by using this: int Sign(double x) { if (x... (by Mythios)
|
Incrementing a char variable |
|
[2 replies] Last: You can simply test it ;-). #include<iostream> char a = 'A' ; ... (by onur)
|
by rushhour
changing negative fraction to positive in c++
|
|
[5 replies] Last: num=1; denom=-1; int sign = num * denom < 0 ? -1 : 1 ; //sign=-1... (by helios)
|