printf

Remember to include a terminating “\n” in your printf – stdout doesn’t flush until it encounters one by default!!!! If printf still doesn’t occur you may need fflush(stdout); or consider using std::cout instead printf format codes d or i – int, decimal (base ten) number x or X – int, hexadecimal number.  Also “%02x” to specify length of […]

Read More