Home » C Programming » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int k = -13;
    k = k / 3;
    printf("%d\n", k);
    return 0;
    }
    1. -13
    2. 3
    3. -4
    4. All of above
    5. None of these
Correct Option: C

-4



Your comments will be displayed only after manual approval.