
please wait
by gmsd
Payroll program accumulation and processing employees
|
My teacher is awful and we pretty much have a terrible book and some links he gave us. Doesn't help out or anything so I'm doing this on my own. I need some ins... |
Feb 20, 2013 at 6:46pm
[no replies]
|
by ADTR2012
C++ Program Help. Lottery program.
|
Can someone help me with this code? Here are the directions to the assignment: In this assignment you are to code a program that selects 10 random non-repeat... |
Feb 20, 2013 at 6:45pm
[4 replies] Last: Here's what I have. Not sure why it isn't working. It works if the use... (by ADTR2012)
|
by Dizzy
Can't stop the program from closing, tried what I know with no avail :(
|
I was taking an exam earlier, It was the simplest question ever. Run this program using the input 3/7 and post the output. I had tried everything to stop the pr... |
Feb 20, 2013 at 5:57pm
[5 replies] Last: IDEs* right :p (by Oria)
|
Answer as soon as possibe please; Linked list: I've a small question |
If the prototype of my function is void sell_item(store **head,store **tail). In main i've passed sell_item(&head,&tail), where head & tail where both pointers ... |
Feb 20, 2013 at 5:48pm
[4 replies] Last: @georgewashere Passing a pointer by copy won't allow the pointers to b... (by closed account D80DSL3A)
|
Comma Separated String to int pointer and length |
Hi, I've done a search for around 1/2 hour now and without success. I'm trying to convert a comma separated string into an int array and the number of intege... |
Feb 20, 2013 at 5:06pm
[4 replies] Last: int stringint(string * input){ int result; stringstream myStream(*in... (by paulbrassington)
|
by GhostSkyn
complex strings?
|
Hi, I'm trying to create a series of functions that will allow me to create and load save games. My first issue is that I need to be able to check which save f... |
Feb 20, 2013 at 5:01pm
[1 reply] : ifstream takes a const char* as a parameter. You are giving it a stri... (by Disch)
|
by chem major
C++ homework help!
|
Hi everyone, I just wrote a program for a homework assignment. I'm quite the beginner to C++ (and programming) and I was hoping someone could review the code... |
Feb 20, 2013 at 4:52pm
[3 replies] Last: Thank you so much! Sometimes I just go blind from reading the same t... (by chem major)
|
by TheNCcoder
Isn't working for some reason...
|
Hi everyone! I'm pretty new to c++ (Like yesterday) and I downloaded Code::Blocks and started to get to work on learning it. I ran into a problem though for s... |
Feb 20, 2013 at 4:44pm
[3 replies] Last: I ran into a problem though for some reason this code below will say... (by cire)
|
by T4l0n
beginner - can't output multiple words with string
|
#include <iostream> #include <fstream> #include <cstdlib> #include <string> using namespace std; int main (){ string text0, text1; ofstream as... |
Feb 20, 2013 at 4:30pm
[1 reply] : http://stackoverflow.com/questions/5838711/c-cin-input-with-spaces (by Darkmaster)
|
by jedlogs
time management program
|
I really want to improve my program its my quiz and it runs smoothly (i think) :)) by using Real time same as the system time on my pc + addition and ... |
Feb 20, 2013 at 2:26pm
[no replies]
|
by Catfish3
EOF bit versus fail bit
|
I want to: 1) use ifstream::get(char &) and ifstream::read() 2) set std::ios_base::badbit and std::ios_base::failbit in ifstream::exceptions() P... |
Feb 20, 2013 at 2:23pm
[4 replies] Last: > how to differentiate between failed input and end of file? #includ... (by JLBorges)
|
by brentmcgehee
ATM problem
|
I want to first thank everyone who has helped me. I am finally starting to get this stuff. Thank goodness. I am working on an ATM problem. We are pulling fro... |
Feb 20, 2013 at 1:43pm
[no replies]
|
by monstur
fractionType Class
|
My assignment is: Design a class fractionType that performs the arithmetic and relational operations on fractions. Overload the arithmetic and relational oper... |
Feb 20, 2013 at 1:38pm
[no replies]
|
by MEandYOU
PLEASE HELP
|
I need a program in c++ that will enter a limit of the loop. using nested for loop with a limit of 3 loops only. like this !!!!! for (){ for (){ for (){... |
Feb 20, 2013 at 12:41pm
[3 replies] Last: And learn some proper forum etiquette. This would be a good start: ht... (by AHCFan20)
|
by kohlh
Visual studio gui
|
I have a quick question when I am using visual studio and doing a project in c# the windows form application is super easy to use and has a great interface to c... |
Feb 20, 2013 at 12:32pm
[4 replies] Last: [quote=coder777]it's my personal opinion, not official Microsoft Well ... (by closed account z05DSL3A)
|
by Anthonypaull
Need help please?
|
So, Im new to C++, just started my TAFE course (Technical and Further Education) I have homework to do, and it is to create a command line program with a fun... |
Feb 20, 2013 at 11:55am
[7 replies] Last: Thanks, I've been checking a lot of tutorials and Ive got it working n... (by Anthonypaull)
|
by Josh Henry
not copying my array in output?
|
so I have to write a program using non c functions to prompt users for input then to read as a char array to get amount of characters in each array then write a... |
Feb 20, 2013 at 9:17am
[15 replies] Last: so i have this but its giving me just the void function error 2120 #... (by Josh Henry)
|
by apati21
Recursive Palindrome checker
|
So I am having trouble with c++ and need help on how to write this program. I've been struggling with the class but want to do better and learn c++. Here is th... |
Feb 20, 2013 at 8:55am
[2 replies] Last: well, there are multiple parts to the assignment. Eventually I will n... (by apati21)
|
by ausairman
Can I create a class/enum/typedef that behaves just like a number but also has members/overloaded implicit conversion?
|
I have a class called Base , which is basically just a double with a bunch of member functions and a long list of operators to make it behave like a number. Ot... |
Feb 20, 2013 at 8:37am
[11 replies] Last: operator int& () { return value ; } won't compile; int(value) is n... (by JLBorges)
|
by cspctec
Pulling integers out of strings
|
How would I pull integers out of a string? I have the following string: string my_string = "C(2)Fe(5)O(4)"; And I need to pull the numbers 2, 5, and... |
Feb 20, 2013 at 8:30am
[3 replies] Last: #include <string> int main() { std::string my_string = "C(2)Fe(5)O(... (by Darkmaster)
|