Question: Write a C program. Construct an integer array of 10 elements. Assign random numbers between 1 and 100 to these elements. Print the produced random
Write a C program. Construct an integer array of 10 elements. Assign random numbers between 1 and 100 to these elements. Print the produced random numbers on the monitor. Ask the user for a key between 1 and 100 to be searched in the array. Declare an integer pointer and initialize it to the address of the array. Search the key in the array by employing the pointer and pointer incrementation operators. Two sample outputs are the following:

24803639667841802025 Give an integer between 1 and 100 to be searched: 41 Your number is found at index number 6 6515891789942398734 Give an integer between 1 and 100 to be searched: 99 Your number is not found in the array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
