Created
April 8, 2025 21:17
-
-
Save raresteak/e8250ce891ce07f02b8718ec4b3839db to your computer and use it in GitHub Desktop.
C Format specifiers - Ascii to Decimal conversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ASCII to Decimal conversion | |
C ---> Decimal | |
: %c ---> 58 32 37 99 | |
: %d ---> 58 32 37 100 | |
: %f ---> 58 32 37 102 | |
: %i ---> 58 32 37 105 | |
: %s ---> 58 32 37 115 | |
: ---> 58 | |
space -> 32 | |
% ---> 37 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
58.32.37.99
58.32.37.100
58.32.37.102
58.32.37.105
58.32.37.115