#include #include #include #include using namespace std; int main( int argc, char * argv[] ) { cout << "Program: " << argv[0] << " PID: " << getpid() << " PPID: " << getppid() << endl; srand( (unsigned) time(NULL) ); int status = rand() % 10; cout << "This program does nothing!" << endl; cout << "Return status: " << status << endl; return status; }