Download this file
18 lines (17 with data), 234 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | PROGRAM NEST;
var r1,r2:integer;
Procedure p2(var s:integer);
PROCEDURE P1(var v,v2:integer);
begin
v:=v+5;
end;
begin
P1(s,r2);
s:=s+9;
r2:=r2+12;
end;
begin
r1:=3;r2:=4;
p2(r1);
writeln(r1,r2);
end.
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.