ex104.pp 295 B

1234567891011121314151617
  1. Program Example104;
  2. { Program to demonstrate the FillDWord function. }
  3. Const
  4. ArraySize = 1000;
  5. Var
  6. S : Array [1..ArraySize] of DWord;
  7. I : longint;
  8. begin
  9. FillDWord(S,ArraySize,0);
  10. For I:=1 to ArraySize do
  11. If S[i]<>0 then
  12. Writeln('Position ',i,' not zeroed out');
  13. end.