in Compiler Design
122 views
0 votes
0 votes

6. Generate code for the following C program using any code generation algorithm. [3 Marks]

              main()

              {

              int x, a, b, c, d, e;

              x= a + b -( c + d ) * e

              }

in Compiler Design
by
122 views

1 Answer

0 votes
0 votes
#include <stdio.h>

int main()

 {

int x, a, b, c, d, e;

x = a + b - (c + d) * e;

 return 0;

 }

Related questions