1
Answer

window.print need to remove extra blank space in bottom

see image i need to remove extra blank from bottom, it is besting paper.
 
 
Answers (1)
1
Shivam Payasi

Shivam Payasi

9 21.1k 26.8k 1y

Here's an example of a Pascal program that prints "##" 10 times:

program PrintHashes;
var
  i: integer;
begin
  for i := 1 to 10 do
    writeln('##');
end.

This program uses a for loop to iterate from 1 to 10 and print "##" on each iteration using the `writeln` procedure.