I want to print the maximum value of the unsigned integer which is of 4 bytes.
#include \"stdafx.h\" #include \"conio.h\" int _tmain(int argc, _TCHAR* argv[
Use %u as the format string to print unsigned int, %lu for unsigned long, and %hu for unsigned short.
%u
unsigned int
%lu
unsigned long
%hu
unsigned short