PROGRAMS

  1. Program to add two numbers.
  2. Program to Convert a given Decimal number upto 100 digits into Binary number
  3. Program to implement Function Overloading
  4. Program to add 10 integers from 1 to 10 using while loop
  5. Program to add 10 integers from 1 to 10 using for loop
  6. Program to add 10 integers from 1 to 10 using goto statement 
  7. Program to add 10 integers from 1 to 10 using dowhile loop
  8. Program to allot Grade to students on the basis of their percentage
  9. Program to find maximum of three numbers
10. Program to perform arithmetic operation
11. Program to perform Swapping through Function and pointers
12. Program to check maximum number using Function and Pointers
13. Program to find Sum of two numbers using FUNCTION
14. Program to find Factorial of a number
15. Program to find whether a number is PRIME or not
16. Program to check whether a number is PALINDROME or not
17. Program to check whether an alphabet is Vowel or not
18. Program to find Maximum of three numbers
19. Program to check whether an year is a Leap year or not
20. Program to Swap two numbers
21. Program to illustrate RETURN BY REFERENCE [FUNCTION]
22. Program to find Prime numbers from 1 to 100
23. Program to perform "1. SUM OF DIGITS" & "2. REVERSE OF A NUMBER"
24. Program to find Factorial using Recursion
25. Program to calculate length of string
26. Program to calculate number of Vowels in a string
27. Program to check whether a string is a PALINDROME or not



Array
  1. Linear Search
  2. Binary Search
  3. Insert an element in an array based on its position
  4. Insert an element in an array based on its value
  5. Delete an element from an array based on its value
  6. Delete an element from an array based on its position
  7. Selection Sorting
  8. Bubble Sorting
  9. Insertion Sorting
10. Merging two Arrays
11. Concatenating two Arrays
12. Program to add n integers
13. Program to print Pyramid
         1
         1 2
         1 2 3
         1 2 3 4
14. Program to find maximum in an array
15. Program to find sum of an array using pointers
16. Program for Bubble Sorting through Pointers
17. Program to print array values through Pointers
18. Program to Sort Strings through Bubble Sort technique
19. Quick Sorting
20. Merge Sorting
21. Radix Sorting
22. Program to find sum of 10 elements
23. Program to increase value of each element by 10
24. Program to Swap neighbour elements in an array
25. Program to Count numbers greater than 5
26. Program to reverse a list
27. Program to display and find Sum of Even numbers in an Array
28. Program to Swap First half with Last half of an Array


Matrix
  1. Sum of Individual Rows and Columns of a Matrix
  2. Program  to find Sum of Diagonals in a Matrix
  3. Program to perform matrix Multiplication
  4. Program to perform transpose of a matrix
  5. Program to Display numbers divisible by 10 in a Matrix
  6. Program to find Sum of numbers divisible 2 or 3 in a Matrix
  7. Program to display Both Diagonal elements of a Matrix
       For Example :
       Matrix :        1   2   3
                           4   5   6
                           7   8   9
        Diagonal 1 : 1   5   9
        Diagonal 2 : 3   5   7
  8. Program to Display Lower triangle of a Matrix
       For Example :
       Input :       1   2   3             Output :    1
                       4   5   6                              4   5
                       7   8   9                              7   8    9
  9. Program to Display Upper triangle of a Matrix
       For Example :
       Input :       1   2   3             Output :    1   2    3
                       4   5   6                                   5    6
                       7   8   9                                         9
10. Program to display Matrix with elements numbered with row < column else "0"
       For Example :
       Output :       1   0   0   0  
                          1    2   0   0                              
                          1    2   3   0
                          1    2   3   4

                      

Structure
  1. Example on Structure
  2. Program to illustrate RETURNING STRUCTURE FROM FUNCTION
  3. Program to pass entire Structure from an Array
  4. Program for passing individual structure members through Function
  5. Program to illustrate Array of Structure
  6. Program to illustrate Nested Structure

Class
  1. Example on Class
  2. Friend Function Example 
  3. Example 1 on Class
  4. Example 2 on Class

Constructor and Destructor
  1. Constructor and Destructor Example

Inheritance
  1. Inheritance with same Function name in Base and Derived Class
  2. Inheritance : Virtual Base Class Example

File Handling
  1. File Handling : Copy entire contents of a file into another
  2. File Handling : Searching a telephone number from a file

Stack and Queue
  1. Stack : Implemented using Array
  2. Queue : Implemented using Array
  3. Circular Queue : Implemented using Array

Linked List
  1. Stack : Implemented using Linked List
  2. Queue : Implemented using Linked List
  3. Circular Queue : Implemented using Linked List