maverick
0
Q:

c++ length of int


  string txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
cout << "The length of the txt 
  string is: " << txt.length(); 
5
// array::size
#include <iostream>
#include <array>

int main ()
{
  std::array<int,5> myints;
  std::cout << "size of myints: " << myints.size() << std::endl;
  std::cout << "sizeof(myints): " << sizeof(myints) << std::endl;

  return 0;
}
3
unsigned int number_of_digits = 0;

do {
     ++number_of_digits; 
     n /= base;
} while (n);
0
sizeof(num);
0

New to Communities?

Join the community