Home » C Programming » Variables » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    register static int n = 13;
    n = 14;
    printf("%d\n", n);
    }
    1. Compilation Error
    2. 13
    3. 14
    4. Runtime Error
    5. None of these
Correct Option: C

14



Your comments will be displayed only after manual approval.