c++ - Maximum value for unsigned int -


this question has answer here:

here's want:

unsigned int max_unsigned_int_size; max_unsigned_int_size = ???; 

how should this?

c

#include <limits.h> unsigned int max_unsigned_int_size = uint_max; 

c++

#include <limits> unsigned int max_unsigned_int_size = std::numeric_limits<unsigned int>::max(); 

Comments

Popular posts from this blog

android - getbluetoothservice() called with no bluetoothmanagercallback -

sql - ASP.NET SqlDataSource, like on SelectCommand -

ios - Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive" -