#ifndef CALCULATOR_H #define CALCULATOR_H #define MAX_EXPR 512 #define MAX_STACK 256 double evaluate_expression(const char *expr); #endif