“Rozmiar int” Kod odpowiedzi

Rozmiar int *

// Size of int* (pointer) in C is:
// 8 Bytes == 64 Bits 
Erezzor

Uzyskanie wielkości INT

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")
Programmer of empires

Rozmiar int

#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;
}
Jebin Maharjan

Odpowiedzi podobne do “Rozmiar int”

Pytania podobne do “Rozmiar int”

Więcej pokrewnych odpowiedzi na “Rozmiar int” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu