by linverno
Dynamic Memory Delete Problem
|
|
[4 replies] Last: The interesting thing is by adding cout lines (e.g. cout << "Blah Blah... (by linverno)
|
by jellyfish
Function to display array is displaying garbage as well
|
|
[1 reply] : You are doing something very strange. You make two arrays: Bo... (by guestgulkan)
|
by FeZedra
converting char* to int
|
|
[4 replies] Last: Thanks (by FeZedra)
|
by RenatoCirino
Converting numbers and characters to words
|
|
[1 reply] : Make an array of strings. const char* number = {"zero", "one", "two"... (by hamsterman)
|
by striderx240
while loop problem
|
|
[7 replies] Last: I'm not familiar with linked lists. If I were you, I'd mark this th... (by jamesmk)
|
by sk1tz0
Rational Numbers Reduce Function
|
|
[1 reply] : That's euclidean algorithm. there is some pseudocode. http://en.wikipe... (by hamsterman)
|
by afrg
putting a vector of ints into a string
|
|
[5 replies] Last: thanks, i'll try that. though I figured there should be a more simple... (by afrg)
|
by cesoxa
overloading cast operator
|
|
[6 replies] Last: 1) Again, this is better off as a constructor for B. Not as a cast o... (by Disch)
|
by afrg
member function constructor takes an int into a vector
|
|
[2 replies] Last: thanks, i found where the segmentation fault was, and indeed it was no... (by afrg)
|
by frankilische
functions
|
|
[1 reply] : You can pass a function pointer or a functor http://www.cplusplus.com... (by Bazzy)
|
Simple Function Question (i think) |
|
[2 replies] Last: Errr yeah, got what you were saying and made it this way #include ... (by closed account 2wC9GNh0)
|
by xDevilx
Encryption & Decryption
|
|
[1 reply] : It is hard to read your code, because you used [ output] blocks inste... (by Duthomhas)
|
by firix
How do I debug CLR ?
|
|
[2 replies] Last: // regex_simple.cpp // compile with: /clr #using <System.dll> usi... (by firix)
|
by snackysniper
system("cls")
|
|
[2 replies] Last: Is the problems solved. (by firix)
|
by snackysniper
system("cls")
|
|
[2 replies] Last: Is the problems solved? (by firix)
|
by natascha
the else-statement of my if-loop doesn't work in a function calling itself
|
|
[1 reply] : You can't do 1<=a<=2 or better, you can but it doesn't do what you t... (by Bazzy)
|
by schim
ASCII & hex interpretation problems
|
|
[no replies]
|
by doforumda
display words in a string separatly
|
|
[1 reply] : Your code prints the string for every white space found. If you have a... (by hamsterman)
|
by p00nani
hello i have a problem with getline function on structure * pointer
|
|
[3 replies] Last: well, if you don't like cin.ignore(), you could use cin.get().. or you... (by hamsterman)
|
by upthepunx90
integer wrap around question
|
|
[1 reply] : Is that the entire code you're giving the compiler? (by helios)
|