ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 2 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 22 May 2017 My Price 8.00

This program compiles and runs with no error indication

Consider the following program. This program compiles and runs with no error indication, but its output is incorrect.  It has an error.  Which line must be changed in order for the program to produce the correct output?  

 

1   #include <stdio.h>

2   /* Find the minimum value in an array of doubles. */

3   double array_min (double x[], int length )

4   {

5       int i;

6       double min = 0.0;

7

8      for (i = 0; i < length; i++)

9      {

10          if (x[i] < min)

11          {

12              min = x[i];

13          }

14      }

15      return min;

16  }

17

18  int main( void )

19  {  

20      double n[] = {12.5, 17.2, 11.4, 8.1};

21      double min;

22  

23      min = array_min (n, 4);

24      printf("The minimum value is %lfn", min );

25      return 0;

26  }

 

 

line 12
line 15
line 10
line 23
line 6

Answers

(11)
Status NEW Posted 22 May 2017 02:05 AM My Price 8.00

-----------

Attachments

file 1495420146-Solutions file 2.docx preview (51 words )
H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly -----------onl-----------ine----------- an-----------d g-----------ive----------- yo-----------u e-----------xac-----------t f-----------ile----------- an-----------d t-----------he -----------sam-----------e f-----------ile----------- is----------- al-----------so -----------sen-----------t t-----------o y-----------our----------- em-----------ail----------- th-----------at -----------is -----------reg-----------ist-----------ere-----------d o-----------n -----------THI-----------S W-----------EBS-----------ITE-----------. ----------- Th-----------ank----------- yo-----------u -----------
Not Rated(0)