Answers for "find int length in c++"

C++
2

length of number c++

#include<cmath>
    ...
    int size = trunc(log10(num)) + 1
....
Posted by: Guest on December-29-2021
0

how to find size of int in c++

#include <iostream>
using namespace std;

int main(){    
    cout << "Size of char: " << sizeof(char) << " byte" << endl;
    cout << "Size of int: " << sizeof(int) << " bytes" << endl;
    cout << "Size of float: " << sizeof(float) << " bytes" << endl;
    cout << "Size of double: " << sizeof(double) << " bytes" << endl;

    return 0;
}
Posted by: Guest on March-19-2022
0

c++ length of int

unsigned int number_of_digits = 0;

do {
     ++number_of_digits; 
     n /= base;
} while (n);
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language