Home » C Programming » Preprocessors » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    void main()
    {
    #define const int
    const min = 41;
    printf("%d", min);
    }
    1. const
    2. Compilation Error
    3. 41
    4. Runtime Error
    5. None of these
Correct Option: C

41



Your comments will be displayed only after manual approval.