ex68.pp 206 B

1234567891011
  1. Program Example68;
  2. { Program to demonstrate the Octal function. }
  3. Uses linux;
  4. begin
  5. Writeln('Mode 777 : ', Octal(777));
  6. Writeln('Mode 644 : ', Octal(644));
  7. Writeln('Mode 755 : ', Octal(755));
  8. end.