7 answers
3
Find the type of error produced by the following C code.main() { in/*comment t x; floa/*comment*/t gate; }Lexical errorsyntax errorboth a) and b) None of these
0 answers
5
a pictorial representation of the value computed by each statement in the basic block isa:) Treeb:) DAGc:) graphd:) NONE
1 answer
6
Consider the following transition rules:A->BCC->+BC|A|$\epsilon$B->DB{print '+'}|$\epsilon$D->(A)|id{print num.value}On input '5+67' this translation scheme printsA 5+67+...