by Abbynormal
New to C++, Code Does not Function as Expected
|
|
[5 replies] Last: Thank you! That did it! (by Abbynormal)
|
by Tarbal
pass string to double
|
|
[15 replies] Last: Wow, thanks Andy. I'm not sure I understand everything here, since I j... (by Tarbal)
|
by plh
Whole number to decimals
|
|
[2 replies] Last: YOu want just 87 for 87 cents? Just don't multiply input by 100. (by MiiNiPaa)
|
by entermax
Help with program C++
|
|
[4 replies] Last: Ok, that's a start. It's a little bit tricky reading strings from a f... (by kbw)
|
by alphamanda
Expected unqualified-id: Fuel usage program
|
|
[1 reply] : Line 10: Odometer is a class name. You can't set a class name to 0. Y... (by AbstractionAnon)
|
a program for products |
|
[12 replies] Last: done thanks for your responses (by Mahmoud Mansour)
|
by ShonH
Syntax namepsace:class(method):a(method)
|
|
[2 replies] Last: I was referring the 'a' to the one in the title. I should have kept th... (by ShonH)
|
by jhykima
Getline Question
|
|
[6 replies] Last: the following code is also having a difficult time handling the getli... (by MiiNiPaa)
|
by zan nabil
Can do this char* x;x = "XXX"; but not this char x[n];x="XXX"; why?
|
|
[4 replies] Last: and another thing is that, pointer to a char can be a string (an arra... (by Disch)
|
by JanoOr
Passing member function to member fct
|
|
[6 replies] Last: #include <iostream> struct A { template < typename PTR_MEM_FUN, ... (by JLBorges)
|
by obito94
save new file each time?
|
|
[2 replies] Last: I did it in C because I'm more used to it. I haven't been taught C++ ... (by obito94)
|
by jhykima
Question Regarding Map
|
|
[1 reply] : It works fine if you create the iterator (or reassign it) after you in... (by shadowmouse)
|
function outputs to screen. I need output to array |
|
[2 replies] Last: Last night I was looking to rewrite this example to work for me. I cam... (by jsonlickliter)
|
by plususerz
My max function always goes to the last number
|
|
[2 replies] Last: @ne555 DAMN wow.... can't believe I wasted 30min to an hour on that. T... (by plususerz)
|
by zan nabil
Are iterators just pointers wrapped around some classes?
|
|
[2 replies] Last: Iterators are designed to look and behave like pointers. Chances are... (by Duthomhas)
|
by zan nabil
Can print the values of iterators using printf() but not cout<<
|
|
[1 reply] : Both are wrong. With cout you have the advantage the the compiler is a... (by coder777)
|
by jhykima
Suggestions on my address book using map
|
|
[3 replies] Last: Line 51 is wrong. Line 68 doesn't make sense. Line 75: Before you assi... (by coder777)
|
by jood96
a help
|
|
[4 replies] Last: It's not an assignment; i'm just taking some online lessons on C++ and... (by jood96)
|
by yolofishlord
problem with percentage
|
|
[2 replies] Last: http://stackoverflow.com/questions/3602827/what-is-the-behavior-of-int... (by MiiNiPaa)
|
by JanoOr
Class inheritance and forward declaration problem
|
|
[5 replies] Last: Thanks, for your help. The error was resolved by not just forward dec... (by JanoOr)
|