Home » C Programming » Variables » Question
  1. What will be the output of the following C code?
     #include <stdio.h>
    void main()
    {
    register int s;
    printf("%d", s);
    }
    1. Garbage value
    2. Compilation Error
    3. Nothing
    4. 0
    5. None of these
Correct Option: D

0



Your comments will be displayed only after manual approval.