How to get integral max bits in windows with C

1 Answer

0 votes
#include <stdio.h>

int main() {
	printf("%d\n", _INTEGRAL_MAX_BITS);
}





/*
run:

64

*/

 



answered Apr 21, 2022 by avibootz

Related questions

1 answer 179 views
1 answer 250 views
1 answer 233 views
2 answers 259 views
1 answer 198 views
198 views asked Apr 24, 2022 by avibootz
1 answer 215 views
...