Computer Science, asked by soujanyasouji1993, 11 months ago

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 shruti762001
0

Answer:

correct answer is a) 4

Explanation:

size of float is 4

Similar questions