#include extern int yyparse(); int main() { if (yyparse() == 0) { printf("Parse successful!\n"); } else { printf("Parse failed.\n"); } }