1. What is the output of this C code? #include <stdio.h> void main() { #define max 37; printf(”%d”, max); } a) 37 b) Compile time error c) Varies d) Depends on compiler AnswerAnswer: b [Reason:] None. 2. What is the output of this C code? #include <stdio.h> void main() { #define max 37 printf(”%d”, max);…