Home » C Programming » Operators » Question
  1. Comment on the following statement.
    int num = 1;
    printf("%d, %dnum", 3*num, num++);
    1. 1, 3
    2. 3, 1
    3. Depend on compiler
    4. 3, 1num
    5. None of these
Correct Option: C

Depend on compiler



Your comments will be displayed only after manual approval.