Hey Everyone,
I just started reading a C++ book and I'm trying to follow along but for some reason the code doesn't compile and run. The book uses Dev-C++. I type in the code exactly how it is in the book but nothing comes up like it's supposed to. Here is the code it has me to enter in the compiler.


Code:
 #include <iostream>
           #include <stdlib.h>
        
           int main(int argc, char *argv[])
{
    cout << "Hello, I am your computer talking." <<endl;
    system("PAUSE") ;
    return 0;
}
any help would be greatly appreciated.

I don't know why this won't compile and run

Thanks in Advance