======Project: Modified oece prog====== A project for C/C++, Data Structures, and System Programming by Karl Krauss for fall 2011. This program only took about an hour. =====Objectives===== The purpose of this project was to modify a program to work with processes using c. =====Attributes===== ====Data Structures==== * Pointers * sorts ====Systems programming==== * processes * command line arg * timers * io redirection =====Code===== This is the header file: * */ #include #include //#include this is for c++ output and is not needed //#include this is for c++ output and is not needed #include #include // need this for c IO #include // needed for c #define DINGLEHOPPER fork() #define SNARFBLAT wait(status) int main(int argc, char **argv) { int i = 0, *status; pid_t me; me = getpid(); if (argc < 2) { //std :: cout << "Please provide a list of positive unique whole numbers\n"; this is c++ output so removed printf("Please provide a list of positive unique whole numbers\n"); //c output added exit(1); } for(i=1; i