Tipe Data C ++
Seperti yang dijelaskan di bab Variabel , variabel dalam C ++ harus berupa tipe data yang ditentukan:
Contoh
int myNum = 5; // Integer (whole number)
float myFloatNum = 5.99; // Floating point number
double myDoubleNum = 9.98; // Floating point number
char myLetter = 'D'; // Character
bool myBoolean = true; // Boolean
string myText = "Hello"; // String
Tipe Data Dasar
Tipe data menentukan ukuran dan jenis informasi yang akan disimpan variabel:
Data Type | Size | Description |
---|---|---|
int | 4 bytes | Stores whole numbers, without decimals |
float | 4 bytes | Stores fractional numbers, containing one or more decimals. Sufficient for storing 7 decimal digits |
double | 8 bytes | Stores fractional numbers, containing one or more decimals. Sufficient for storing 15 decimal digits |
boolean | 1 byte | Stores true or false values |
char | 1 byte | Stores a single character/letter/number, or ASCII values |
Anda akan mempelajari lebih lanjut tentang tipe data individu di bab berikutnya.
0 Response to "TIPE DATA DASAR PADA C++"
Posting Komentar