Program C ++ untuk Menemukan Ukuran int, float, double, dan char di Sistem Anda

Untuk menemukan ukuran variabel, sizeof Operator digunakan.

sizeof(dataType);

Contoh: Temukan Ukuran suatu Variabel

#include 
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;
}

Keluaran

Size of char: 1 byte
Size of int: 4 bytes
Size of float: 4 bytes
Size of double: 8 bytes

catatan: Anda mungkin mendapatkan hasil yang berbeda jika Anda menggunakan komputer lama.