Selasa, 18 Desember 2018

Structure

Structure is a data type to store group of data with various of data type
Structure component called member/field/element.
Heterogeneous (various element data type)
Structure in other programming language also called record
Contoh struct simpel untuk mahasiswa:
struck mahasiswa {
        char nim[11];
        char nama[25];
        int usia;
        int semester;
};

 

Tidak ada komentar:

Posting Komentar