• Write a program to get the largest element in array using function.
  • Write a program to implement the concept of nested structure.
  • Program to store information of 10 employees and to display information of an employee depending upon the employee no given. (Arrays of structures)
  • Write a program to find the product of two matrices entered by the user.
  • Write a program to find the sum of all the prime numbers in a matrix entered by user.
  • Write a program to perform PUSH and POP operations in array implemented stack.
  • Write a program to perform PUSH and POP operations in a dynamically allocated stack.
    Consider the following:
    struct Node
    {
    int a,b;
    Node *link;
    };
  • Write a program to perform Insert and Delete operations in array implemented queue.
  • Write a program to perform Insert and Delete operations in a dynamically allocated Queue
    Consider the following:
    struct Node
    {
    int a,b;
    Node *link;
    };