A project that I've been working over for the last month as a side-project, a large integer calculator in C.
- GCC Compiler (MinGW on Windows or GCC on Linux and MacOS)
Windows
Running the Executable
- Open the command prompt and navigate to the directory where the project is located.
- Run the following command to run the executable:
cd windows && largeintcalculator.exe
Compiling the Project
- Open the command prompt and navigate to the directory where the project is located.
- Run the following command to compile the project:
gcc largeintcalculator.c -o largeintcalculator && largeintcalculator
- The program will start and you can use it.
- To exit the program, type `7` on the menu.
Linux
Running the Executable
- Open the terminal and navigate to the directory where the project is located.
- Run the following command to run the executable:
cd linux && ./largeintcalculator
Compiling the Project
- Open the terminal and navigate to the directory where the project is located.
- Run the following command to compile the project:
gcc largeintcalculator.c -o largeintcalculator && ./largeintcalculator
- The program will start and you can use it.
- To exit the program, type `7` on the menu.
- If you get an error while compiling the project, try to install the GCC compiler using the following command:
sudo apt install gcc
MacOS
Running the Executable
- Open the terminal and navigate to the directory where the project is located.
- Run the following command to run the executable:
cd macos && ./largeintcalculator
Compiling the Project
- Open the terminal and navigate to the directory where the project is located.
- Run the following command to compile the project:
gcc largeintcalculator.c -o largeintcalculator && ./largeintcalculator
- The program will start and you can use it.
- To exit the program, type `7` on the menu.
- If you get an error while compiling the project, try to install the GCC compiler using the following command:
brew install gcc
This project is licensed under the MIT License - see the LICENSE file for details.