B Search Erros
Return Home
Newest questions tagged c++ - Stack Overflow

I want to print the type of the if endif controlling value [closed]

#include int main() { #if 5 * 5 #endif } Is there a way to print the #if #endif controlling value type? I wanna print the type of 5 * 5 while doing # if 5 * 5 #endif; how can this be possible ? I tried using

View original source