Search results

  1. 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