Answers for "c print long"

C
4

c print long

unsigned long n;
long m;

printf("%lu %ld", n, m);
Posted by: Guest on October-18-2020
0

print long in c

You must use %ld to print a long int, and %lld to print a long long int.
Posted by: Guest on January-27-2021

Code answers related to "C"

Browse Popular Code Answers by Language