Skip to content

@yashppawar 's solutions for Exercises in Let Us C book by Yashvant Kanetkar. 📖

License

Notifications You must be signed in to change notification settings

YP-Learning/LetUs-C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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