#include /*For getpid*/ int main(void){ /* getpid returns the process id of the calling process */ /* This gets the pid through a C library call */ long ID; ID = getpid(); printf ("The getpid number for this process is %ld\n", ID); return(0); }