guru's blog

(Download) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

1.Accept radius & Produce Area
2. Area of Triangle
3. Calculate Electricity Bill
4. Calculation
5. Celsius to Farenheit
6. Chack for Odd or Even
7. Conversion to Yard Feet Inches
8. Conversion to Yard Feet Inches
9. Display using cout
10. Find Factorial
11. Greatest of 3 nos
12. Greatest of 3 nos using conditional
13. Multiplication Table
14. No of Days Years Weeks
15. Print Quotient & Remainder

(TUTORIAL) C++ Programming

(TUTORIAL) C++ Programming

Virtual functions

I have heard people say things like ``As a performance optimization, I've removed all virtual functions and replaced the virtual function calls with switch statements and ordinary member function calls.'' That is a major performance killer. If you need the functionality that a virtual function call gives you, there is just no way to do it faster than through a virtual function call. The switch switch/call construct is guaranteed to require at least as many

(CODE) Calendar Date Class in C++

(CODE) Calendar Date Class in C++

As a means of illustrating what an actual large and complete C++ class looks like, we will present a class for managing calendar dates. Commentary on this class is given below the source.

First of all, the header:

(CODE) Boyer-Moore-Horspool String Searching

(CODE) Boyer-Moore-Horspool String Searching

As another example of how a class can represent an abstraction, consider the problem of searching a char* string for a given pattern. In the C library there is a strstr() function for doing this. But suppose that we wish to implement our own scheme, based on one of the relatively new high-performance algorithms for searching like the Boyer-Moore-Horspool one (see the book "Information Retrieval" by William Frakes for a description of this algorithm).

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

(DOWNLOAD) PROJECTS AND PROGRAMS FOR BEGINEERS in c++

1.Calculator ( Using Switch Case )

2.Pascals Triangle ( Using Switch Case )

3.An Output Question # 1

 4.An Output Question # 2

 5.Array in Given Pattern

6.Bubble Sort

 7. Insert Delete From 1-D Array

8.Merge 2 Arrays

9.Multiplication Table

Google