Question: Give the following C programming what is the output from an execution of this c program ( explaimn the output comming from where ? only

Give the following C programming what is the output from an execution of this c program( explaimn the output comming from where ?
only output is zero point !!)
#include
float magic(float *, int);
int main (void){
float n [4]={1.1,3.5,15.3,7.66};
printf("%f",magic(&n[0],4));
return 0 ;
}
float magic(float *p , int k){
int i;
float m=*p;
for(int i =0; i

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!