Taille d'int *
// Size of int* (pointer) in C is:
// 8 Bytes == 64 Bits
Erezzor
// Size of int* (pointer) in C is:
// 8 Bytes == 64 Bits
try:
Number = int(input("Input any Number:- "))
converson = str(Number)
Size = len(converson)
print("The size of Intger is ",Size)
except:
print("Input is incorrect")
#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;
}