I am just trying to familiarise myself with the basics of C++ moving from Java. I just wrote this functionality abstinent program and am coming across an errortest.cpp:15: error: expected primary-expression before ‘<<’ token and I am not sure why.

Anybody care to explain why endl is not working with constants? The code is below.

//Includes to provide functionality.
#include <iostream>

//Uses the standard namespace.
using namespace std;

//Define constants.
#define STRING "C++ is working on this machine usig the GCC/G++ compiler";

//Main function.
int main()
{
  string enteredString;

  cout << STRING << endl;
  cout << "Please enter a String:" << endl;
  cin >> enteredString;
  cout << "Your String was:" << endl;
  cout << enteredString << endl;

  return(0);
}
link|improve this question

The snippet above does have this: #include <string>. Does your original code have it? – yasouser Jul 11 '11 at 20:41
Say #include <string> at the top of your file. – Kerrek SB Jul 11 '11 at 20:41
feedback

7 Answers

up vote 6 down vote accepted

You have a ; in your preprocessor definition. Note that #DEFINE STRING x just copies the whole x-statement (including the ;) into the place where it's referenced.

Also, a preprocessor constant isn't a language constant. You should use const string STRING("C++ is working on this machine usig the GCC/G++ compiler");

link|improve this answer
Ah ok, that makes sense, rookie error. Oh, would you happen to know why only the first word of my string is printed? Thanks. – VisionIncision Jul 11 '11 at 20:50
1  
@VisionIncision: cin >> enteredString only reads one word. To read the whole line use getline(cin, enteredString). – hammar Jul 11 '11 at 20:52
Ahhh, thankyou. – VisionIncision Jul 11 '11 at 20:55
feedback

Your #define has a semicolon at the end. That becomes part of the macro, so the pre-processed code looks like this:

cout << "C++ is working on this machine usig the GCC/G++ compiler"; << endl;

Remove the semicolon and you should be fine.


PS: It's usually a better idea to use real constants for this rather than relying on the preprocessor:

const char *STRING = "C++ is working on this machine usig the GCC/G++ compiler";
link|improve this answer
1  
he also needs to include <string> for "string enteredString;" to compile – P.R Jul 11 '11 at 20:44
@Peter: actually many implementations of <iostream> will include it for you. – KillianDS Jul 11 '11 at 20:46
@KillianDS: You shouldn't rely on that for portable code, though. – hammar Jul 11 '11 at 20:47
feedback

You've got a secmi-colon at the end of your #define - this will be substituted into your code, giving.

cout << "C++ is working on this machine usig the GCC/G++ compiler"; << endl;

link|improve this answer
feedback

Because you have a semi colon after STRING. Remove it and give it a try...

link|improve this answer
feedback

Remove the ; in the STRINGS definition

link|improve this answer
feedback

Remove ; from

#define STRING "C++ is working on this machine usig the GCC/G++ compiler"
link|improve this answer
feedback

Remove the ; at the end of #define STRING and try again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.