Answers for "how to find out the amount of ints in c++"

0

how to find out the amount of ints in c++

int x = 1000;
int numberOfDigits = x ? static_cast<int>(log10(abs(x))) + 1 : 1;
Posted by: Guest on September-21-2021

Code answers related to "how to find out the amount of ints in c++"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language