long mylong = 1000000000000000000; printf("%d", mylong);
Output: -1486618624
I don't know what you call that %d thing I don't think all the long types go in ㅜㅜ If I write %f, it looks like 0.0000 so what should I do?
%f
0.0000
Specify %, %d or %i are known as format specifiers.
%
%d
%i
The format specifier for long attaches l immediately after the specifier.
long
l
unsigned long n; long m; printf("%lu %ld", n, m);
912 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
617 Uncaught (inpromise) Error on Electron: An object could not be cloned
589 Scrap text information after the "View More" button when searching in the Yahoo! News search window
1022 In Java servlet, when SHA-256 sends WW-Authenticate header for digest authentication, the client does not return the result.
581 PHP ssh2_scp_send fails to send files as intended
© 2024 OneMinuteCode. All rights reserved.