Recent content by rako

  1. R

    newbie #include<...> question

    Hi - In my book it says to include iostream.h. Sorry if I am missing something really obvious. btw, the code works in project builder (C++ Tool) but i would like to stay in the terminal.
  2. R

    Easy C++ Compile?

    I am new at C++. I can get cout<<"Hello world" but I can't figure out how to get cin to work. It appears to do nothing. I am using Project Builder C++ tool and can't figure it out. I have also tried compiling using cc from the terminal but don't get anywhere. It appears that the iostream.h...
  3. R

    newbie #include<...> question

    I just noticed that posting my question clipped off my #include. I am trying to use the iostream header file. Thanks
  4. R

    newbie #include<...> question

    Hello - I am new to C++ and going through an intro to C++ book. I am attempting to run the following: #include <iostream.h> int main() { std::cout << "Please work, please"; return 0; } I have also tried the following: #include <iostream.h> int main() { cout << "Please work...
Back
Top