Skip to content

Instantly share code, notes, and snippets.

@fletcher
fletcher / calc.c
Created July 12, 2024 01:28 — forked from BimManager/calc.c
Pratt Parser Calculator in C
// (Public domain, created by Ryan Johnson)
// A simple calculator in C using Pratt parsing.
// compile with `cc -lm calc.c`
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <inttypes.h>
#include <ctype.h>
#include <math.h>