#include #include int main() { int const i { 123456 }; std::cout << "représentation numérique: " << i << std::endl; std::cout << "représentation binaire: " << std::bitset(i) << std::endl; std::cout << sizeof(123) << std::endl; std::cout << sizeof("123") << std::endl; std::cout << sizeof(123456) << std::endl; std::cout << sizeof("123456") << std::endl; std::cout << sizeof(123456789) << std::endl; std::cout << sizeof("123456789") << std::endl; }