I m given a yacc file and I m supposed to create a symbol table. What do I do after I use yacc on the file?
If I just add on to the following yacc file, will it turn into a parser? /* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %...