November 3rd, 2010 12:07 PM
What an ambiguous question. What do you exactly mean with "The Program should search for the payroll code in the code in the file"? Will your program need to read some type of code to perform...
November 3rd, 2010 11:59 AM
I'm creating a Windows application using Microsoft Visual C++ 2008.
I successfully created a GUI and programmed all of its functionality. However, when I run certain functions my application will...
October 17th, 2010 04:10 PM
I have no problem reading and writing ASCII-format PGM files.
However, when I try to read a raw-format PGM file, my program goes nuts. I've read that some people have been successful at reading...
September 10th, 2010 06:23 PM
I was wondering if there's a standard Matrix creation and manipulation library for VC++. Say, an include which lets you create Matrix objects which you can give sizes to, invert, multiply and all of...
September 5th, 2009 11:37 AM
I have a problem.
My program is prompting the user for a file address like this:
// ...
string address;
cout << "Enter file address:\n";
cin >> address;
file.open(address);
// ...
April 25th, 2009 07:17 PM
Hi!
As some of you may know, I'm currently learning C++ and would like to know something; I know that many of the loops in C/C++ can be represented using a regular while loop. In the following...
April 22nd, 2009 07:39 AM
sorry, but i'm not "just looking for a friend."
i just saw the guy is pretty new to C++ and wanted to be his friend because i like helping others.
if i was "just looking for a friend" I'd be...
April 21st, 2009 05:05 PM
btw GCDEF you ever heard of a term called "friendship?"
wait lemme google it
April 21st, 2009 05:02 PM
why don't you do both using the compiler and on paper at the same time, and see where you went wrong?
April 21st, 2009 04:43 PM
lol this sites got the pms blocked
April 21st, 2009 02:15 PM
yo,
if you ever get stuck on anything, feel free to send me a pm, etc.
April 21st, 2009 01:54 PM
I recommend you pick up a really, really basic (for super beginners) book on C/C++.
Anyways.
Think of a, b, and c as memory locations because in C/C++ that's what they are.
e.g.
Whenever you:...
April 21st, 2009 11:43 AM
thank you for the quick response, im having such a crappy day... -____-
April 21st, 2009 11:38 AM
#include <fstream>
#include <string>
// ...
string address = "";
// ...
int main()
April 11th, 2009 07:02 PM
lmao
did you even bother reading my question at all?
I clearly stated this isn't a homework assignment. Let me repost it for you: This is a problem that was handed out to us during a...
April 11th, 2009 04:36 PM
So we had a programming tournament at my university on friday and we were given 6 problems. One of them I didn't understand at all and would like to ask you guys to give me some general pointers as...