71. What will be the output of the following C code?
#include<stdio.h>
#define max 100
main()
{
#ifdef max
printf("hello");
}
#include<stdio.h>
#define max 100
main()
{
#ifdef max
printf("hello");
}