Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int p = 11, q = 12, r = 13, s = 14, t;
    t = r + s = q * p;
    printf("%d, %d\n", t, s);
    }
    1. 11
    2. 12
    3. 13
    4. 14
    5. Syntax error
Correct Option: E

Syntax error



Your comments will be displayed only after manual approval.