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, please";
return 0;
}
I can compile and run a program with NO include# with just an empty main() funtion, so I am assuming I don't know how to incorporate the standard libraries.
TIA
#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, please";
return 0;
}
I can compile and run a program with NO include# with just an empty main() funtion, so I am assuming I don't know how to incorporate the standard libraries.
TIA
