by chipp
double typedata error
|
anyone knows why this happened? #include <iostream> int main() { int u_input = 0; doubl... |
Apr 1, 2017 at 10:20am
[1 reply] : solved: thx to NewtoThis on #cplusplus.com the cause: % operator can'... (by chipp)
|
by jamesfarrow
maps and classes
|
As an exercise we have been asked to create our own class and use this as the key in a map. So far s... |
Apr 1, 2017 at 7:25am
[8 replies] Last: Hi JLBorges - yes I agree. It's my first attempt - I'm (hopefully) goi... (by jamesfarrow)
|
by Lithia
Cash Register Program
|
Hello, I just started programming a few days ago so it would be a big help if the explanations are s... |
Apr 1, 2017 at 5:06am
[12 replies] Last: @kemort Well after I fixed the calculation and ran it, the output sti... (by Lithia)
|
by Starfire
Bubble Sorting Random Integer Generator
|
Ok I know how to do bubble sorting but I forgot how to do the random integers part. I'm supposed to ... |
Apr 1, 2017 at 2:44am
[12 replies] Last: Thanks for your help guys but I'm still lost on everything so you know... (by Starfire)
|
by sesslit805
Printing from Derived classes ******
|
Good afternoon coders! We recently starting learning about derivied classes and I am having troub... |
Apr 1, 2017 at 2:29am
[2 replies] Last: how to call salary function or print function. Do I do it in the .h f... (by gunnerfunner)
|
by CWHH
C++ swapping problem
|
Hello, i have a problem that ask me to swap the even index(elements) with odd index(elements),but it... |
Apr 1, 2017 at 2:22am
[3 replies] Last: A more fundamental problem is here: void swap(int a ) even though ... (by gunnerfunner)
|
help with string reversing code |
I need help with this code, I am trying to output yes when the reversed of the string is the same as... |
Apr 1, 2017 at 2:01am
[3 replies] Last: Pass the reverse iterators of the original string to the std::string c... (by gunnerfunner)
|
by code4545
Array of structures?
|
Could somebody provide an example of an array of structures? I don't quite understand how to do one. |
Apr 1, 2017 at 1:01am
[1 reply] : A struct or class is a user-defined type. Think of it like any other t... (by Chervil)
|