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