This is a basic calculator, similar to the bc Unix command. It handles the addition, subtraction, multiplication, division and modulo operations on integer values.
-
Updated
Mar 16, 2022 - C
This is a basic calculator, similar to the bc Unix command. It handles the addition, subtraction, multiplication, division and modulo operations on integer values.
This is a Unix command line interpreter. It implements the following built-ins: echo, cd, setenv, unsetenv, env and exit. Other commands are delegated to the system.
This application finds and prints the largest possible square on a board while avoiding obstacles. The code uses only the following library functions and system calls: malloc, free, read, open, close, printf.
This application finds the shortest path between the entrance and the exit of a maze, while avoiding obstacles. It does so using the IDA* path search algorithm. Extensive use is also being made of the C+ coding style.
Add a description, image, and links to the cplus topic page so that developers can more easily learn about it.
To associate your repository with the cplus topic, visit your repo's landing page and select "manage topics."