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 176 views
1 answer 242 views
1 answer 228 views
2 answers 253 views
1 answer 192 views
192 views asked Apr 24, 2022 by avibootz
1 answer 210 views
...