help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: new post/Emacs v21.2/C++ mode/cin, cout


From: weber
Subject: Re: new post/Emacs v21.2/C++ mode/cin, cout
Date: Thu, 26 Jul 2007 23:07:44 -0000
User-agent: G2/1.0

On Jul 26, 5:24 pm, Frank Murray <fjmurr...@mac.com> wrote:
> Hello,
>
>     A new post, and not sure if this is more a basic C++ question than
> an Emacs question.
>
> I notice that in my Emacs editor, I cannot write just "cin >>" as
> input or "cout <<"
> as output.  The g++ compiler used in Emacs requires "std::cin >>" and/
> or "std::cout <<"
> for input and output.  Note, this is a Terminal window running under
> Mac OS X.
>
> So, again, if this is more a C++ question, I apologize in advance.
> If so, I will ask that community
> this question.  If not, any information is appreciated.  Thanks.
>
> fjm

This has absolutely nothing to do with emacs.

On the other this piece of code:

// my first program in C++

#include <iostream>
using namespace std;

int main ()
{
  cout << "Hello World!";
  return 0;
}

compiles fine with g++ hello.cpp -o hello
so I don't get you.

-weber



reply via email to

[Prev in Thread] Current Thread [Next in Thread]