How to check if compiler is C++ and a /clr compiler option is set in C++

1 Answer

0 votes
#include <stdio.h>

int main() {
#ifdef __cplusplus_cli
    printf("%d\n", __cplusplus_cli);
#else
    printf("not cplusplus_cli\n");
#endif
}





/*
run:

not cplusplus_cli

*/

 



answered Apr 21, 2022 by avibootz

Related questions

1 answer 198 views
198 views asked Apr 22, 2022 by avibootz
1 answer 151 views
151 views asked Apr 22, 2022 by avibootz
1 answer 141 views
141 views asked Apr 22, 2022 by avibootz
1 answer 171 views
1 answer 153 views
153 views asked Apr 22, 2022 by avibootz
1 answer 238 views
2 answers 221 views
...