关于条件编译的问题?
#include <stdio.h>#include <stdlib.h>
#define H 1
int main(int argc, char *argv[])
{ #if H
printf("H为非0!");
#else
printf("H为0!");
#endif
system("PAUSE");
return 0;
}
2013-04-11 20:30
2013-04-11 20:40
2013-04-11 20:44

2013-04-11 20:53