My solutions for Exercises in Let Us C book by Yashvant Kanetkar
If you find any issue or find any solution incorrect feel free to create an issue.
Thank you very much!
Compile the code files *.c
and run the executables, linux executables are already present, the files inside bin/
are executables, they can be just run directly by providing the path to them.
to compile recommended to use GCC or CLang.
$ clang ./filename.c -o filename
$ ./filename
or
$ gcc ./filename.c -o filename
$ ./filename
alternatively you can use make
$ make filename
$ ./filename