Which of the following blocks would most likely be used to create a string constant from scanned code?
Question 15 options:
{ append_scan(yytext); return TOKEN_STRING; }
{ return TOKEN_STRING; }
{ append_scan(yytext); return TOKEN_STRING; }
{ $ = createLiteral(scanned_text); }