This is my second post and still am unable to understand why this simplest program cannot compile and run for me. I am not so understanding to much of anything but this is my real interest, learning c++. Here is my code. I have followed my tutoring book and comes out with errors and then execution aborts.
Sorry in advance for wasting peoples time. I want to learn.
Code:
#include <iostream> #include <stdlib.h> int main(int argc, char *argv[]) { cout<<Hello world.<<endl; system("PAUSE"); return 0; }
Comment