cmake_minimum_required(VERSION 3.31)
project(3_IntStandards C)

set(CMAKE_C_STANDARD 11)

add_executable(3_IntStandards main.c)
