compiler design program lab Program to recognize strings ‘aaab’, ‘abbb’, ‘ab’ and ‘a’ using grammar (an b n , n>=0) . | Compiler Design Lab Programs | Yacc Programs Yacc Part : %token A B NL %% stmt : s NL { printf(“Valid String\n”); exit(0) ;} … Sharecodepoint -February 23, 2019