- Visula Studio Code for compiling and debuggin the code.
- Compiling and running without IDE
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential
- Compiling and running
gcc filename.c -o outputname.out
./outputname.out
- Make for automating the build
sudo apt-get install cmake
sudo apt-get install valgrind
- Memory Sanitization using gcc and -fsanitize option