edited by
2,470 views
2 votes
2 votes

Incremental-Compiler is a compiler:

  1. which is written in a language that is different from the source language
  2. compiles the whole source code to generate object code afresh
  3. compiles only those portion of source code that have been modified
  4. that runs on one machine but produces object code for another machine
edited by

1 Answer

Answer:

Related questions

0 votes
0 votes
2 answers
1
4 votes
4 votes
2 answers
2
6 votes
6 votes
3 answers
3
Arjun asked Apr 22, 2018
5,680 views
A particular BNF definition for a "word is given by the following rules.<word :: = <letter I <letter <charpair I <letter <intpair <charpair :: = <letter <letter I <charpa...
5 votes
5 votes
2 answers
4
Arjun asked Apr 22, 2018
8,526 views
Consider the following program{ int x=1; printf("%d",(*char(char*)&x)); }Assuming required header files are included and if the machine in which this program is executed ...