C GUI Calculator

A GUI-based calculator developed in C using GTK.


Project maintained by rafisarkar0128 Hosted on GitHub Pages — Theme by mattgraham

๐Ÿงฎ C GUI Calculator โ€“ Project Requirements

This project requires several development tools and libraries to compile and run a graphical calculator built using C and GTK+ 3.

๐Ÿ“ฆ Required Packages

Package Description
gcc GNU Compiler Collection โ€“ Required to compile C source code
pkg-config Tool to manage compiler/linker flags for libraries like GTK
libgtk-3-dev Development files for GTK+ 3 โ€“ Required to build GUI applications in C

๐Ÿ–ฅ๏ธ Installation Instructions by Platform

โœ… Linux (Debian/Ubuntu)

sudo apt update
sudo apt install gcc pkg-config libgtk-3-dev

โœ… Linux (Fedora/CentOS/RHEL)

sudo dnf install gcc pkgconf-pkg-config gtk3-devel

โœ… Windows (MSYS2)

pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-pkg-config mingw-w64-x86_64-gtk3

โœ… macOS (Homebrew)

brew install gcc pkg-config gtk+3

๐Ÿ“˜ Notes

๐Ÿ”— Resources