Write a C program that declares 2 double arrays called numbers1 and numbers2 bot
ID: 3651794 • Letter: W
Question
Write a C program that declares 2 double arrays called numbers1 and numbers2 both of size 100. Get numbers from the user until the user enters a negative number and save the numbers in array numbers1. Then in the main do the following:
1) Call function printArray to print the numbers1 10 elements per line.
2) Get a number from the user (data-type) double which is stored in a double variable called target. Get another number from the user (data-type) double which is stored in another double variable called difference.
3) Call the function linearSearch to do a linear search to determine if there is a number X in numbers1 such that . If there is such a number, return the first encountered X
Explanation / Answer
#include #include using namespace std; void printarrays(double arr1[],const int size) { int j=0; for (int i=0;iRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.