ex17.pp 171 B

123456789
  1. Program Example17;
  2. { Program to demonstrate the GetUid and GetEUid functions. }
  3. Uses linux;
  4. begin
  5. writeln ('User Id = ',getuid,' Effective user Id = ',geteuid);
  6. end.