What is the output of the following C program?
#include
int main ()
{
printf ("%d", sizeof(2.7f));
return 0;
}
a) 4
b) 8
c) 2
d) compilation error
Answers
Answered by
0
Answer:
correct answer is a) 4
Explanation:
size of float is 4
Similar questions