✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Predict the output of following program?
#include <stdio.h>
#define MAX 1000
int main()
{
int MAX = 100;
printf("%d ", MAX);
return 0;
}