forked from coolsidd/Compiler-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patht2.txt
More file actions
21 lines (21 loc) · 658 Bytes
/
t2.txt
File metadata and controls
21 lines (21 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
program ( )
{
declare list of variables new d w e2 : integer ;
declare v1 : integer ;
declare list of variables abcd ghd2_1 ssd_2_3 : array [ 2 .. 5 ] of integer ;
declare list of variables a1 a2 : integer ;
declare list of variables b1 b2 b3 : boolean ;
declare list of variables c1 c2 : real ;
declare list of variables m1 m2 m3 : real ;
new = d * e2 + w - 76875 ;
v1 = a1 - a2 * d ;
b1 = b2 &&& b3 ||| b1 ;
c1 = c2 + c1 ;
abcd = ghd2_1 + ssd_2_3 ;
c2 = a1 / a2 ;
b1 = c1 &&& d ;
c1 = a1 * a2 ;
abcd [ 4 ] = ghd2_1 [ 5 ] + ssd_2_3 [ 2 ] ;
m1 = m2 + a1 ;
abcd = ghd2_1 * m1 + b1 ;
}