Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 807 Bytes

File metadata and controls

31 lines (24 loc) · 807 Bytes

LetUs-C

My solutions for Exercises in Let Us C book by Yashvant Kanetkar

🤗 Contributions

If you find any issue or find any solution incorrect feel free to create an issue.

Thank you very much!

Executing the code.

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