Home » C Programming » Preprocessors » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    #define MINIMUM 21);
    #ifdef MINIMUM
    #define MAXIMUM 210
    #endif
    int main()
    {
    printf("%d %d\n", MAXIMUM, MINIMUM
    return 0;
    }
    1. 21 210
    2. 210 21
    3. Compilation Error
    4. Garbage value
    5. None of these
Correct Option: B

210 21



Your comments will be displayed only after manual approval.