CSE MCQs :: C-MCQs
- What will be the data type of the expression (a < 50) ? var1 : var2; provided a = int, var1 = double, var2 = float
- Which expression has to be present in the following? exp1 ? exp2 : exp3;
- Value of c after the following expression (initializations a = 1, b = 2, c = 1): c += (-c) ? a : b;
- Comment on the following expression? c = (n) ? a : b; can be rewritten as