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 106 views
1 answer 177 views
1 answer 170 views
2 answers 171 views
1 answer 137 views
137 views asked Apr 24, 2022 by avibootz
1 answer 155 views
...