ex16.pp 177 B

123456789
  1. Program Example16;
  2. { Program to demonstrate the GetPid, GetPPid function. }
  3. Uses BaseUnix;
  4. begin
  5. Writeln ('Process Id = ',fpgetpid,' Parent process Id = ',fpgetppid);
  6. end.