Sunday, 13 October 2013
no image

A Generic bubble sort    #include <iostream>    using namespace std;    template <class X>    void bubble(X *data, int size)    {      register int a, b;      X t;     ...
Tuesday, 8 October 2013
no image

Table cells that span more than one row/column Cell that spans two columns: Name Telephone Bill Gates 555 77 854 555 77 855 Cell that spans two rows: First Name: Bill Gates Telephone: 555 77 854 555 77 855 ...
Monday, 7 October 2013
no image

Recursive Binary Search    public class BinarySearchRecursive    {      public static final int NOT_FOUND = -1;      /**      * Performs the standard binary search     ...
no image

Tower Of Hanoi Alogithm Using Recursion.    #include<iostream.h>    #include<stdio.h>    #include<conio.h>    class tower    {      int *t1,*t2,*t3;      int x,y,z; ...
no image

Use Of Pointers    #include <iostream>    using namespace std;    int main()    {      // declare an integer and a float variable      int IntNum;      float FloatNum; ...
no image

Virtual Function    #include <iostream>    using namespace std;    class BaseClass    {      public:        int i;        BaseClass(int x) ...
no image

Word Frequency    #include <stdio.h>    #define SIZE 80    #define LEN 80    int strword(char[],char[][]);    int strword_p(char*,char**);    void main()    {      char*...