I have a pascal code. It is as follows:
Program Pzim ;
var
i:integer;
vect:array[1..1001] of integer;
Begin
i:=1;
for i:= 1 to 999 do
vect[i]:=i+1;
for i:= 1 to 999 do
writeln (vect[i]);
readln;
End.
The code in Pascalzim prints a sequence of numbers on the screen. I wanted to save in text file whatever is generated by the code.
Would it be possible using the same pascal, or who knows otherwise, using notepad ++ for example?