C code Blocks Write the complete function that receives a pointer to the array's first element as an argument and multiplies the third element of the array by 10.  Define your function in the same way as the given function prototype.    Take a look at the "For example" below to see how the function is used in the main function and the expected result.   #include  #include void multiplyElement(int *ptr);int main(){    int array[5] = {1,2,3,4,5};     int *arrPtr = NULL;    arrPtr = &array[0];    multiplyElement(arrPtr);    for(int i = 0; i < 5; i++){         printf("%d ", array[i]);     } return 0; } //Your answer starts here For example: Test Result int array[5] = {1,2,3,4,5}; int *arrPtr = NULL; arrPtr = &array[0]; multiplyElement(arrPtr); for(int i = 0; i < 5; i++){ printf("%d ", array[i]); } 1 2 30 4

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.1: Function And Parameter Declarations
Problem 13E
icon
Related questions
Question

C code Blocks

Write the complete function that receives a pointer to the array's first element as an argument and multiplies the third element of the array by 10. 

Define your function in the same way as the given function prototype. 

 

Take a look at the "For example" below to see how the function is used in the main function and the expected result.

 

#include <stdio.h>
#include <stdlib.h>void multiplyElement(int *ptr);int main(){    int array[5] = {1,2,3,4,5};
    int *arrPtr = NULL;    arrPtr = &array[0];    multiplyElement(arrPtr);    for(int i = 0; i < 5; i++){
        printf("%d ", array[i]);
    }

return 0;
}
//Your answer starts here


For example:

Test Result
int array[5] = {1,2,3,4,5}; int *arrPtr = NULL; arrPtr = &array[0]; multiplyElement(arrPtr); for(int i = 0; i < 5; i++){ printf("%d ", array[i]); } 1 2 30 4
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning