ex18.pp 179 B

123456789
  1. Program Example18;
  2. { Program to demonstrate the GetGid and GetEGid functions. }
  3. Uses BaseUnix;
  4. begin
  5. writeln ('Group Id = ',fpgetgid,' Effective group Id = ',fpgetegid);
  6. end.