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 247 views
1 answer 232 views
2 answers 257 views
1 answer 197 views
197 views asked Apr 24, 2022 by avibootz
1 answer 213 views
...