
please wait
by ugurgs
help me please!!!
|
question: (Account Class) Create an Account class that a bank might use to represent customers’ bank accounts. Include a data member of type int to repre... |
Mar 10, 2013 at 5:32am
[3 replies] Last: For warning to everyone the OP is unwilling to take any advice that is... (by closed account 3qX21hU5)
|
by ugurgs
please help me urgently!
|
question: (Account Class) Create an Account class that a bank might use to represent customers’ bank accounts. Include a data member of type int to repre... |
Mar 10, 2013 at 3:58am
[10 replies] Last: Ahh my mistake then (Should have taken the time and looked through the... (by closed account 3qX21hU5)
|
by anonymousxyz
Returning and Passing Arrays Using Points - Getting Junk Values
|
Hello and thanks! I am having trouble with a simple code that creates an array of 10 elements and prints it. I have a function that returns a pointer to an ar... |
Mar 10, 2013 at 3:54am
[8 replies] Last: Cire, that is very smart. And I think that is right. If there is any d... (by anonymousxyz)
|
by Retrokin
SDL Event Comparison Error
|
How come I when I put: if(Event->type==SDL_Quit) I get E:\CodeBlocks\Games\SDL\DOOM_Shooter\game.cpp||In member function 'void game::events(SDL_Event*)':| ... |
Mar 10, 2013 at 3:30am
[no replies]
|
by Shinji2013
Constructor/Destructor
|
I'm referencing pages 209-14 of C++ for dummies, 6th edition. It's a minor point, but I'm confused none the less. It's saying that objects that contain other ob... |
Mar 10, 2013 at 3:17am
[6 replies] Last: Correct. The pointer remains uninitialized (doesn't point to anything... (by AbstractionAnon)
|
by Man silence
How do I work for this program by disciples
|
___________________________ |
Mar 10, 2013 at 3:11am
[2 replies] Last: I know that by simple algorithms Example: salary salary<= 1999 tax=sal... (by Man silence)
|
by Hashimatsu
Check if number is in array
|
I want to check if the random generated number is present in the array, and if it is create a new random number instead. The problem is I have an array of objec... |
Mar 10, 2013 at 2:51am
[14 replies] Last: #include <iostream> #include <stdlib.h> #include <time.h> const int... (by Hashimatsu)
|
by EmperorXyn
Need Something To Move Onto.
|
I learned the syntax of c++ pretty well, to the point its starting to get boring because most things I learn, I already know. So I need something to move o... |
Mar 10, 2013 at 2:41am
[no replies]
|
by eblader
class help
|
so I am making an ATM/Banking program I am supposed to use classes Program works if I input it normally(spaghetti programming) so when I put it into functi... |
Mar 10, 2013 at 2:11am
[no replies]
|
by seraphdd
Using a vector of pointers correctly
|
This is my current code it does everything I want it to, but I am using an array of object pointers and I would like to use a vector of pointers so I can add to... |
Mar 9, 2013 at 11:40pm
[10 replies] Last: @ne555 - Since the OP didn't post CarbonFootPrint, I missed that it wa... (by AbstractionAnon)
|
by j0rdant13
Need help with hash tables
|
Im trying to understand hash tables and how to use them in Component Based Architecture, im a beginner so i want a tutorial or some code to help me understand t... |
Mar 9, 2013 at 11:37pm
[2 replies] Last: what a helpful community... lmao (by j0rdant13)
|
by dioing
recursive function
|
I'm learn recursive function this week , and I have a problem ... In this code #include<iostream> using namespace std; #define dimension 2 int CalcuAddic(i... |
Mar 9, 2013 at 11:34pm
[10 replies] Last: @AbstractionAnon - Then i suppose he intended Tab to be an array of ... (by thejman250)
|
by xanthian23
Manipulating menus, switching from one to another...
|
OK, so my current assignment, (which I thought was due next week, but is apparently due this week), is to take a menu program we wrote earlier in the semester, ... |
Mar 9, 2013 at 11:21pm
[14 replies] Last: Well, I've been chewing on your last post for a while now, working it ... (by xanthian23)
|
by topotushka
push_back class problem
|
hi guys! i've got problem when i'm trying to push class element into the vector. problem begins in copy constructor at line free(p_chrom); Individual::Indiv... |
Mar 9, 2013 at 11:12pm
[no replies]
|
Ah, SDL, you've done it again. |
I guess SDL and I have a shifting relationship... Well, this time the problem between us is CPU usage. I added a SDL_Delay(x); to my code during my drawing ti... |
Mar 9, 2013 at 11:08pm
[16 replies] Last: How can I implement the FPS thing? The code is all outlined in that... (by Disch)
|
Reading Multiple Words from a file |
I am writing up a code that involves inputting data from a file into an array of structs. The objective of this code is to create an array of structs for a list... |
Mar 9, 2013 at 10:43pm
[3 replies] Last: stringstream http://www.cplusplus.com/doc/tutorial/basic_io/ std::str... (by fx11)
|
by Christa912
Program crashing over an else if statement
|
My program goes along the lines of if(answer=='F')//finds article in already loaded database //do code else if(answer=='L')//lists articles in order //do c... |
Mar 9, 2013 at 8:52pm
[no replies]
|
by cspctec
Help with pointers and arrays
|
I'm trying to use a pointer to fill an array with the integer 20 and then print the array using the pointer: #include <iostream> using namespace std; void ... |
Mar 9, 2013 at 8:40pm
[2 replies] Last: Thank you, I added the dereference operators in the function arguments... (by cspctec)
|
by Guzfraba
double-precison
|
I wont to store in a variable a real number,for example 0.132547698,but the double can store just 6 digits.Take a look: #include <iostream> using namespace... |
Mar 9, 2013 at 8:28pm
[2 replies] Last: Just because you don't see the extra digits displayed, it doesn't mean... (by Chervil)
|
by Amulon
Shellsort vector
|
static void shellSort(vector<int> numbers, int array_size) { int i, j, increment, temp; increment = 3; wh... |
Mar 9, 2013 at 7:12pm
[no replies]
|