Question: What would be the output from the second printf? If the number is a floating point number, write up to two decimal places. int main

What would be the output from the second printf? If the number is a floating point number, write up to two decimal places.
int main(){
float a =13.5;
float b, c;
b = &a;
//suppose address of a is 1006
c = b;
printf("
%u %u %u", &a, b, c);
printf("
%f %f %f %f", a,(&a), &a, b, c);
return 0;
}

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 Databases Questions!