1. a. Write a C program to find sum and average of the given number.
b. Write a C program using Recursive function to compute the factorial of a given number
2. a. Write a C program to find the addition of two matrices.
b. Write a C program to check whether the given string is Palindrome or not.
3. a. Write a C Program to implement comparison of two string using pointers.
b. Write a C program to swap two number using pass by value and references.
4. a. Write a C Program to find whether a given number is a prime number.
b. Write a C program to find the Fibonacci series up to a range.
5. a. Write a C program to sort an array of ‘N’ numbers using quick sort.
b. Write a C program to check whether the given number is an Armstrong number or not.
6. a. Write a C program which copies one file to another.
b. Write a C program to find the largest three numbers.
7. a. Write a C program to sort an array of ‘N’ numbers using merge sort.
b. Write a C program to find sum of first N natural numbers.
8. a. Write a C program to implement the hashing technique.
b. Develop a C program to sort an array of ‘N’ numbers using insertion sort.
9. a. Write a C program to create Employee details using the structure.
b. Develop a C program for implementing a stack using arrays.
10. a. Write and execute a C Program to create a railway reservation system with
following modules by using structure.
Booking
Availability checking
Cancellation
Prepare chart.
11. a. Write a C program to create a Pascal triangle.
b. Develop a C program for implementing a Queue using arrays.
12. Write a C program to implement Binary Search technique.
13. a. Develop a C program for implementing a Stack using arrays.
b. Write a C program to find the transpose of a matrix.
14 a. Write a C program to implement the addition of two polynomials using linked list.
b. Write a Program to implement Linear Search.
15. Write a C Program am to implement the following various operations for List ADT
using array
i) Creation
ii) Insertion
iii) Deletion
16. Write a C program to implement the various operations of List ADT using linked list.
17. Write a C program to implement a stack using linked list.
18. Write a C program for implementation of Binary Tree.
19. Write a C Program to convert the infix expression into postfix expression.
20.Write a C program to implement a queue using linked list.