ex18.pp 172 B

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