answersLogoWhite

0


Best Answer

prod=0;

i=1;

do

{

prod = prod +a[i] * b[i];

i=i+1;

} while(i<=20);

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

int x, *px, **ppx, ***pppx;

px = &x;

ppx = &px;

pppx = &ppx;

***pppx= 12345;

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Three address code in compiler design?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is DAG in compiler?

Directed Acyclic Graph,Used to derive TAC- three address code to generate target code.


Which compiler compiles the IL code to native code?

Just-In-Time compiler


What is load time binding?

: Compiler generates relocatable code if memory location is not known at compile time. Address assigned as loaded; If starting address


How to design a Compiler?

This is a fairly complex answer, but it basically boils down to a few oversimplified steps. First, design a language, or find the specifications for a language you would like to use. Second, design a lexical parser that can interpret the "tokens" that you designed in your language. Third, design a compiler/linker that will assemble the tokens into binary code, and link them with the appropriate libraries. Your exact steps will vary depending on the operating system you are using, the compiler you have available, etc.


What does a compiler allow us to do?

A compiler converts programming code into computer code that a computer can read.


Are programs that translate the source code to object code?

False. A compiler converts source code into object code.


What is bliss compiler?

A bliss compiler compiles Bliss source into Bliss object code which is a step in executing macdine code written by the Bliss compiler.


Features of good compiler in compiler design?

1. Compiler should generate accurate code corresponding to the source code provided 2.Compiler should perform better optimization that would contribute to the improvement of the Performance as well as in conservation of space. 3.Compiler should be bug-free by itself. 4.Output of the compiler should not take much time to run. 5. Compiler should be able to provide details of the error occurring such that they are sufficient to locate that error in the source program. 6. Compiler should generate machine code by using CPU registers efficiently. &amp; should not use redundant LOAD or STORE statements for data.


What is role of compiler?

It coverts your source code into machine code so the computer can execute it.


What is the difference between java compiler and C compiler?

Greetings Technologist. The Java compiler compiles Java code, whereas the C compiler compiles C Code HTH Richard Wolf Software Architect


What is use of compiler in c?

The compiler translates source code into machine code. As opposed to java, this is a machine specific operation.


What is compiler in computer programming?

A compiler is a program that translates high-level source code into low-level machine code.