Debug Program3:                                                                                                     int element(int arr[], int num) { in i, ele; ele = arr[0]; for (i = 1; i < num; i++) if (arr[i] > ele) ele = arr[i]; return ele; } main() { arr[] = {1, 24, 145, 20, 8, -101, 300}; int n = sizeof(arr)/sizeof(arr[0]); printf("element of array is %d", element(arr[], n)); }

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter14: Exploring Object-based Programming: Designing An Online Poker
Section14.1: Visual Overview: Custom Objects, Properties, And Methods
Problem 7QC
icon
Related questions
Question

Debug

Program3:                                                                                                    

int element(int arr[], int num)

{

in i, ele;

ele = arr[0];

for (i = 1; i < num; i++)

if (arr[i] > ele)

ele = arr[i];

return ele;

}

main()

{

arr[] = {1, 24, 145, 20, 8, -101, 300};

int n = sizeof(arr)/sizeof(arr[0]);

printf("element of array is %d", element(arr[], n));

}

  1. 24
  2. 145
  3. -101
  4. 300

 

Program4:                                                                                                    

main()

{

int m,n;

for(i 0; i << 5; i++)

{

printf("\t\t\t\t");

for(j 0; j << 5; j+++)

printf("*");

printf("/n");

}

 

Program 5:                                                                                                   

int func(int)

main()

{

int num = 7, c;

int f= func(num);

printf("\n\n%d of %d\n\n", num, f);

}

int func(aj);

{

if(aj=1 aj=0)

return 1;

else

return (aj*fun(aj-1);

}          

  1. 49
  2. 5040
  3. 7117
  4. none of the above
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Randomized Select Algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning