format-specifiers tag

1 questions


2 answers
74 views
0
How can I fully print the unsigned long int?

#include <stdio.h>int main() { unsigned long long int num = 285212672; //FYI: fits in 29 bits int normalInt = 5; printf(%ul is %d bytes; int value is %d.\n, num, sizeof(num), normalInt); return ...


© 2024 OneMinuteCode. All rights reserved.