Initial commit

This commit is contained in:
2025-10-29 19:46:56 +01:00
commit d665218448
5 changed files with 544 additions and 0 deletions

11
CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 4.0)
project(calculator C)
set(CMAKE_C_STANDARD 23)
add_executable(calculator main.c
structures.h
stack.c
stack.h
)
target_link_libraries(calculator m)