1.

What will be the data type returned for the following C function?
#include <stdio.h>
int function()
{
return (double)(char)10.0;
}

A. char
B. double
C. multiple type-casting in return is illegal
D. float
E. int
Answer» F.


Discussion

No Comment Found

Related MCQs