Home » C Programming » Functions » Question
  1. What will be the data type returned for the following C function?
    #include <stdio.h>
    int function()
    {
    return (double)(char)10.0;
    }
    1. char
    2. double
    3. multiple type-casting in return is illegal
    4. float
    5. int
Correct Option: E

int



Your comments will be displayed only after manual approval.