Home » C Programming » Operators » Question
  1. What will be the data type of the following expression? (Initial data type: n = int, num1 = double, num2 = float)
    expression (n < 25)? num1 : num2;
    1. float
    2. double
    3. int
    4. All of above
    5. None of these
Correct Option: B

double



Your comments will be displayed only after manual approval.