
C Program to demonstrate 8Queen with simple graphics
The C program is an implementation of the 8-Queens Puzzle, a classic problem in chess. The objective of the puzzle is to place eight chess queens on an 8×8 chessboard in such a way that no two queens threaten each other. In chess, a queen can attack horizontally, vertically, and diagonally.

JavaScript Code to show Browser Information
This JavaScript code does a great job of displaying information about your web browser. Information includes Browser Name, Version, your computer’s OS platform, and whether Java is enabled.

The C++ Programming Language (4th Edition)
In this brand-new fourth edition of The C++ Programming Language, author Bjarne Stroustrup, the creator of C++ has reorganized, extended, and completely rewritten his definitive reference and tutorial for programmers who want to use C++ most effectively. It is widely considered one of the most authoritative and definitive references on the C++ Programming Language. The book covers all aspects of the C++ language, including its syntax, semantics, and use in real-world applications.
Programming C# 4.0: Building Windows, Web, and RIA Applications for the .NET 4.0 Framework
Aimed at experienced programmers and web developers, the new edition of Programming C# doesn't waste words on elementary programming topics. Instead, this practical book focuses on the features and programming patterns that are new to the C# language and fundamental...

C++ program to demonstrate Inheritance

Transform your IT and business with The Phoenix Project – the gripping story that redefines how we think about DevOps and innovation!
View on Amazon
This is a simple C++ Program to demonstrate Inheritance. Simpler methods in the classes have been changed to inline code to shorten the file considerably. In a practical programming situation, methods that are this short should be programmed inline since the actual code to return a simple value is shorter than the code required to send a message to a non-inline method.