参考:​​https://sourceforge.net/p/predef/wiki/OperatingSystems/​

#include <stdio.h>

int main() {
#if
printf("windows");
#elif
printf("linux");
#elif
printf("apple");
#else
printf("other");
#endif

return 0;
}