Home » C Programming » Operators » Question
  1. What will be the output of the following C code snippet?
    #include <stdio.h>
    void main()
    {
    unsigned int m = -10;
    printf("%d", m);
    }
    1. -10
    2. Compilation Error
    3. Runtime Error
    4. Garbage value
    5. None of these
Correct Option: A

-10



Your comments will be displayed only after manual approval.