Home » C Programming » Data Types » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    int n = 98;
    char m = n;
    printf("%c\n", m);
    }
    1. 98
    2. Compilation error
    3. b
    4. Garbage value
    5. None of these
Correct Option: C

b



Your comments will be displayed only after manual approval.