Q. What will be the data type returned for the following C function?
Code:
#include <stdio.h>
int func()
{
return (double)(char)5.0;
}
β
Correct Answer: (B)
int