I'm just leaning how to use C++ and I'm confused on return integers and there purpose.
ex:

Code:
#include <iostream>

using namespace std;

int main()
{
 cout<<"HEY, you, I'm alive!  Oh, and Hello World!\n";
cin.get();

return 1; <~~~WHAT!?? :confused: 
}