Q1. Write down a C program to input N numbers (real or integer) and stores them in an array. Conduct a linear search for a given key number and report success or failure in the form of an appropriate message.
Q2. Write down a C program to delete the duplicates from an array of integers.
Q3. Write down a C program to compute XY by using recursion where values of X and Y are entered via keyboard. Do not use pow() function.
Q4. Write down a C program which counts the number of characters and lines in a program. Lines are designated through a new line. As well note that the program guards against a file which ends devoid of a newline for the last line.
Q5. Write down a C program which reads values from keyboard into a two-dimensional array. Construct two one-dimensional arrays which includes row and column averages.