Jump to content

Arithmetic evaluation/C: Difference between revisions

no edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 2:
 
This is a LL(1) recursive descent parser. Only performs integer division. There is a function for every non-terminal in the grammar, save add_op and mult_op, which were lumped into term_tail and factor_tail respectively.
<syntaxhighlight lang="c">
<lang c>#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
Line 226 ⟶ 227:
int main(int argc, char** argv) {
Expr* expr = NULL;
G_STRING_ITERATOR = 0;
 
if(argc > 1) {
Line 234 ⟶ 236:
return 0;
}
</syntaxhighlight>
</lang>
404

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.