Question: c programming array 1. Write a program that will ask the user to fill 1D array of integers with size of 5, then calculate the
c programming array 
1. Write a program that will ask the user to fill 1D array of integers with size of 5, then calculate the sum of all integers and print the sum. 2. Write a program that will ask the user to fill 1D array of integers with size of 5, then the program should search for integer with value 3 if found print 3 is found, otherwise print 3 not found. 3. Write a program to fill a 1D array of N integers and calculate the average of the integers. i. N must be input from the user. 4. Write a program to fill 1D array on N integers and find the maximum number of the filled integers. i. N must be input from the user. 5. Write a program to fill 1D array of N integers and reverse it into another one. i. N must be input from the user. 6. Write a C program to create 2D array of integers 3*3 and fill it with numbers from 10 to 19, and print the 2D array in table form. 7. Write a C program to read number of rows and columns, then read the values from the user, store them into a 2D array and print them in table form. 8. Write a C program to store 16 integer value from the user into 2D array 4*4, then count the odd and even numbers in the array, print the results
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
