by justontime41
call object function for another class
|
|
[2 replies] Last: Thanks for your help!!!! (by justontime41)
|
by joshuatz
Converting 3 chars into a single int
|
|
[1 reply] : you can use sstream // Example program #include <iostream> #include... (by rafae11)
|
by Blue Sky
palindrome function not working
|
|
[2 replies] Last: Wow it's quite obvious now. Thanks for the quick reply (by Blue Sky)
|
by kikiyox77
coding help
|
|
[5 replies] Last: Don't compare bool variables to true or false. Just use if ( hasUppe... (by fredk)
|
by hartman498
For loop Help
|
|
[2 replies] Last: I got it but thanks. I had my for loop inside the while which is what ... (by hartman498)
|
by Idiotal
While Loop Problem.
|
|
[3 replies] Last: You never change anything in the body of the inner while loop, so the ... (by fredk)
|
by Idiotal
What's wrong?
|
|
[1 reply] : [quote=Idiotal]Doesn't display m. This is one reason why --> for (... (by closed account E0p9LyTq)
|
by qwewq149
Email with Mailbox class; compilation error
|
|
[3 replies] Last: Thanks guys, i got it, appreciate the help!! (by qwewq149)
|
by Idiotal
Console outputs/prints nothing.
|
|
[4 replies] Last: When you use long long you may just have to be very patient, waiting f... (by Chervil)
|
Is there a connection between the size_t, pointers and amount of ram on a computer? |
|
[2 replies] Last: Consider this: size_t count; int * address; // set some values to bot... (by keskiverto)
|
by Harutyun
I can't understand pointers and references. Please help.
|
|
[1 reply] : A reference is an alias. Just like some refer to Bessie, while other c... (by keskiverto)
|
by Khentse
Nested Loops
|
|
[1 reply] : You're missing #include <iostream> You're printing the same numbe... (by AbstractionAnon)
|
by Khentse
Loops Sum
|
|
[2 replies] Last: First, please use the code tags when posting code. See http://www.cplu... (by keskiverto)
|
by spade2561
Need help with switch
|
|
[2 replies] Last: indent your code and then you will see the problem. (by Jaybob66)
|
by ajessie
Reading Decimal error, and ignoring entire line
|
|
[1 reply] : Some of the variables declared as integer should be floating point. ... (by Chervil)
|
by ajessie
Missing Type specifier
|
|
[2 replies] Last: Line 53: An if is required after else . (by coder777)
|
by JJ2828
SIMPLE QUESTION
|
|
[3 replies] Last: #include <iostream> using namespace std; class AA { static int x; p... (by JJ2828)
|
by monrelle
Mandatory Output it is not working and I cannot figure out why?
|
|
[1 reply] : 1) Please use code tags when posting code, to make it readable: http:... (by MikeyBoy)
|
by crazydaze
Pointers
|
|
[8 replies] Last: You're welcome - glad it helped! (by MikeyBoy)
|
by samalia
How to link C++ pgm as to read information from Excel?
|
|
[3 replies] Last: Here is a simple class to read and write Excel spreadsheets. http://ww... (by Thomas1965)
|