#include<stdio.h>
#define max 100
int main()
{
#undef max
#ifndef max
{
printf("max is undefined");
}
#endif
getchar();
return 0;
}
#define max 100
int main()
{
#undef max
#ifndef max
{
printf("max is undefined");
}
#endif
getchar();
return 0;
}
0 comments:
Post a Comment