Useful printf
format specifiers
%x
: print hexadecimal%d
: print decimal%s
: print string, given pointer to string on stack%n
: store number of characters printed thus far into a pointer on the stack
FA2018 Week 10
printf
format specifiers%x
: print hexadecimal%d
: print decimal%s
: print string, given pointer to string on stack%n
: store number of characters printed thus far into a pointer on the stack