Write a program in C to read n number of values in an array and display it in reverse order
Write a program in C to sort elements of the array in aescending order.
There are various methods of sorting
Write a program in C to find the second largest element in an array.
Write a program in C for multiplication of two square Matrices.
Write a program in C to calculate determinant of a 3 x 3 matrix.
Write a program in C to find the length of a string without using library function
Strings end with NULL character $ \0 $
Write a program in C to check if the entered string is palindrome or not.
A palindrome is a word, number, phrase, or other sequence of characters which reads the same backward as forward, such as madam, racecar.
Write a program in C reverse a string using string.h library