Skip to content

Instantly share code, notes, and snippets.

View SamerM0's full-sized avatar

Samer SamerM0

View GitHub Profile
@SamerM0
SamerM0 / calculator.c
Created October 12, 2025 19:57
calculator in C
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdbool.h>
enum OperationType
{
SUM,