Archive | September, 2010

Sorting of a Structure on Names Using Bubble Sort

September 18, 2010

1 Comment

Write C Program for Sorting of a Structure on Names Using Bubble Sort Write a program that asks user an ID, name, age and salary of 5 employees. Store all the ID’s into one array and sort the array in asscending order. Now to display the records in asscending order search for each elements from [...]

Continue reading...

How to Perform A Advanced Matrix Operations

September 17, 2010

0 Comments

Here’s a C program for Performing Advanced Matrix Operations like finding determinant, singular, etc

Continue reading...

How to Merge Two 1-D Arrays

September 15, 2010

0 Comments

Here’s a C program How to Merge Two 1-D arrays

Continue reading...

What Is The Difference Between C & C++ ?

September 14, 2010

1 Comment

In object oriented programming, a programmer can solve problems by breaking them down into real-life objects (it presents the programmer with an opportunity to mirror real life). For those people who know C programming, it would be useful to know the differences between C and C++.

Continue reading...

Program to find files with duplicate names using binary search tree

September 2, 2010

0 Comments

When the hard disk is new the files and directories are properly organized. As the hard disk grows old, some laxity sets in and one tends to create files with duplicate names in different directories. Write a program to locate these duplicate filenames. C Program to find files with duplicate names using binary search tree [...]

Continue reading...