Forum: C++ Mar 3rd, 2009 |
| Replies: 2 Views: 1,438 You have gcc (The C compiler) installed, but not g++ (The C++ compiler). cc1plus is the binary you need, but it comes bundled with g++ (not gcc). Look for build-essential, or at a prompt apt-get... |
Forum: C++ Mar 2nd, 2009 |
| Replies: 6 Views: 1,178 *waves his hand like a Jedi*
You want to code an open source active directory clone..... |
Forum: C++ Mar 1st, 2009 |
| Replies: 12 Views: 649 I wonder if somehow the C++ program is introducing an EOF character prematurely. I strongly doubt it's a crlf \n issue (that is linux uses a different mechanism for new lines than does DOS/Windows).... |
Forum: C++ Feb 22nd, 2009 |
| Replies: 3 Views: 966 *mumbles something about find_last_of* |
Forum: C++ Feb 18th, 2009 |
| Replies: 11 Views: 956 *Mumbles something about std::reverse()* |
Forum: C++ Feb 16th, 2009 |
| Replies: 7 Views: 559 Antibiotics anyone..... antibiotics? |
Forum: C++ Feb 12th, 2009 |
| Replies: 7 Views: 590 |
Forum: C++ Feb 10th, 2009 |
| Replies: 4 Views: 513 First, you don't want your instructor to know that you simply copied the code from this web page (http://www.macs.hw.ac.uk/~pjbk/pathways/cpp1/node42.html). Getting assistance by using the page is... |
Forum: C++ Feb 2nd, 2009 |
| Replies: 7 Views: 485 What The Hell? Please don't post crappy advice. |
Forum: C++ Feb 1st, 2009 |
| Replies: 3 Views: 333 While I fully agree with you here, his question was about getting access to the individual characters in the string... not about how to proceed with the rest of his project. ;) |
Forum: C++ Jan 30th, 2009 |
| Replies: 3 Views: 192 One problem, is that you didn't create your own thread.... using someone else's thread to post your question is a sure way to get flamed and not get the answer you desire. It also helps to use code... |
Forum: C++ Jan 18th, 2009 |
| Replies: 18 Views: 2,889 int calcList()
{
std::string inputVal;
int cnt = 0;
int list[100];
while (inputVal != "complete") {
std::cout << "Enter an integer: ";
std::getline(std::cin, inputVal); |
Forum: C++ Jan 18th, 2009 |
| Replies: 3 Views: 907 You are using std::string, you need to be using array of char.
EDIT: Didn't see Narue Posted... My responses never do so well following hers... discard this :p |
Forum: C++ Jan 14th, 2009 |
| Replies: 1 Views: 325 1) You shouldn't post in red. It doesn't alter our level of urgency, and actually annoys us. I know your reason was probably to distinguish between your code and your words, but see 3 for that.
2)... |
Forum: C++ Jan 4th, 2009 |
| Replies: 4 Views: 351 /* ************************************* */
/* Function To Run A Shell Command, And */
/* Read The Output Back Into Our Program */
/* ************************************* */
std::string... |
Forum: C++ Jan 2nd, 2009 |
| Replies: 11 Views: 575 sure, windows.h includes everything that we need. The standard C++ stuff, is just the includes, using namespaces (the namespaces and the #include <iostream> isn't even needed...it just came with the... |