1 answer
2
1 answer
5
1 answer
7
1 answer
8
2 answers
10
1 answer
12
A top-down parser generates ________________.right-most derivationright-most derivation in reverseleft-most derivationleft-most derivation in reverse
3 answers
21
When do we count ++(post increment or pre increment) as 1 or 2 token ?
2 answers
22
#include<stdio.h int main() { int x, y = 7; x = ++y + ++y + y ; printf("%d\n", x); return 0; }What is the output of this code snippet ?A. 27B. 26C. 25D. Compilation error...
2 answers
23
1. L ={ a^n b^m c^x d^y | n=m or x=y}2. L ={ a^n b^x c^m d^y | n=m or x=y}Classify above in CFL/DCFL?
2 answers
24
5 answers
27
What it the number of tokens in the following line?printf("%d numbers.", &x);
2 answers
28
int main() { int a,b; a=10; b=15; printf("a=%d,b=%d",a++,b ); }The number of tokens in the above C program is_________.I am getting 30The answer given is 29
4 answers
30