我想定义一个常数, 如果某事是真实的, 并在“ 系统( ) ” 中使用它的价值 ;
例如:
#ifdef __unix__
# define CLRSCR clear
#elif defined _WIN32
# define CLRSCR cls
#endif
int main(){
system("CLRSCR"); //use its value here.
}
我知道在 conio.h/conio2.h 中有 < code> clerscr () ; in concio.h/conio2.h, 但这只是一个例子。 当我试图发射它时, 它说 < code> clcs 没有被宣布, 或者 CLRSCR 不是内部命令( bash) 。
谢谢 谢谢