Test Your C++ Skills

Test Your C++ Skills
Title Test Your C++ Skills PDF eBook
Author Yashavant P. Kanetkar
Publisher
Pages 0
Release 2003-03
Genre C++ (Computer program language)
ISBN 9788176565547

Download Test Your C++ Skills Book in PDF, Epub and Kindle

C Programming: Test Your Skills

C Programming: Test Your Skills
Title C Programming: Test Your Skills PDF eBook
Author Kamthane Ashok
Publisher Pearson Education India
Pages 358
Release 2010-09
Genre C (Computer program language)
ISBN 9788131732090

Download C Programming: Test Your Skills Book in PDF, Epub and Kindle

C Programming: Test Your Skills is specifically designed to be used as the supplementary resource for learning C Programming. It is ideal for self practice or test preparation and hones one's problem solving abilities through varieties of exercises.

C Programming: Test Your Skills: Test Your Skills

C Programming: Test Your Skills: Test Your Skills
Title C Programming: Test Your Skills: Test Your Skills PDF eBook
Author Kamthane, Ashok
Publisher Pearson Education India
Pages 356
Release
Genre C (Computer program language)
ISBN 813175393X

Download C Programming: Test Your Skills: Test Your Skills Book in PDF, Epub and Kindle

C Programming: Test Your Skills is specifically designed to be used as the supplementary resource for learning C Programming. It is ideal for self practice or test preparation and hones one's problem solving abilities through varieties of exercises

Test Your C++ Skills

Test Your C++ Skills
Title Test Your C++ Skills PDF eBook
Author Yashvant P. Kanetkar
Publisher
Pages 0
Release 2011
Genre Programming language- C.
ISBN 9788183331180

Download Test Your C++ Skills Book in PDF, Epub and Kindle

Exploring C

Exploring C
Title Exploring C PDF eBook
Author Yashavant Kanetkar
Publisher
Pages 0
Release 2003-08
Genre Computer program language
ISBN 9788176566339

Download Exploring C Book in PDF, Epub and Kindle

Working Effectively with Legacy Code

Working Effectively with Legacy Code
Title Working Effectively with Legacy Code PDF eBook
Author Michael Feathers
Publisher Prentice Hall Professional
Pages 457
Release 2004-09-22
Genre Computers
ISBN 0132931753

Download Working Effectively with Legacy Code Book in PDF, Epub and Kindle

Get more out of your legacy systems: more performance, functionality, reliability, and manageability Is your code easy to change? Can you get nearly instantaneous feedback when you do change it? Do you understand it? If the answer to any of these questions is no, you have legacy code, and it is draining time and money away from your development efforts. In this book, Michael Feathers offers start-to-finish strategies for working more effectively with large, untested legacy code bases. This book draws on material Michael created for his renowned Object Mentor seminars: techniques Michael has used in mentoring to help hundreds of developers, technical managers, and testers bring their legacy systems under control. The topics covered include Understanding the mechanics of software change: adding features, fixing bugs, improving design, optimizing performance Getting legacy code into a test harness Writing tests that protect you against introducing new problems Techniques that can be used with any language or platform—with examples in Java, C++, C, and C# Accurately identifying where code changes need to be made Coping with legacy systems that aren't object-oriented Handling applications that don't seem to have any structure This book also includes a catalog of twenty-four dependency-breaking techniques that help you work with program elements in isolation and make safer changes.

Crafting Interpreters

Crafting Interpreters
Title Crafting Interpreters PDF eBook
Author Robert Nystrom
Publisher Genever Benning
Pages 1021
Release 2021-07-27
Genre Computers
ISBN 0990582949

Download Crafting Interpreters Book in PDF, Epub and Kindle

Despite using them every day, most software engineers know little about how programming languages are designed and implemented. For many, their only experience with that corner of computer science was a terrifying "compilers" class that they suffered through in undergrad and tried to blot from their memory as soon as they had scribbled their last NFA to DFA conversion on the final exam. That fearsome reputation belies a field that is rich with useful techniques and not so difficult as some of its practitioners might have you believe. A better understanding of how programming languages are built will make you a stronger software engineer and teach you concepts and data structures you'll use the rest of your coding days. You might even have fun. This book teaches you everything you need to know to implement a full-featured, efficient scripting language. You'll learn both high-level concepts around parsing and semantics and gritty details like bytecode representation and garbage collection. Your brain will light up with new ideas, and your hands will get dirty and calloused. Starting from main(), you will build a language that features rich syntax, dynamic typing, garbage collection, lexical scope, first-class functions, closures, classes, and inheritance. All packed into a few thousand lines of clean, fast code that you thoroughly understand because you wrote each one yourself.