1 / 7

Variabel, Konstanta, Tipe Data

Variabel, Konstanta, Tipe Data. Prepared by Yohana N, S.Kom. Identifier. Di dalam program, selalu dibutuhkan suatu tempat untuk menyimpan nilai yang disebut identifier. Identifier dibagi menjadi 2 jenis, yaitu: Variabel Konstanta. Variabel.

Télécharger la présentation

Variabel, Konstanta, Tipe Data

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Variabel, Konstanta, Tipe Data Prepared by Yohana N, S.Kom

  2. Identifier • Di dalam program, selalu dibutuhkan suatu tempat untuk menyimpan nilai yang disebut identifier. • Identifier dibagi menjadi 2 jenis, yaitu: • Variabel • Konstanta

  3. Variabel • Variabel adalah nama yang digunakan dalam memori komputer untuk menyimpan suatu nilai. • Nilai suatu variabel dapat berubah-ubah selama program berjalan. • Cara mendeklarasikan variabel: tipe_data nama_variabel;

  4. Aturan Penamaan Variabel • Ketentuan pemberian nama untuk variabel : • Tidak boleh sama dengan nama keyword reserved, function, dan harus unik. • Maksimum 32 karakter. Bila lebih, maka karakter selebihnya tidak akan diperhatikan oleh komputer. • Case sensitive : membedakan huruf besar dan kecil • Karakter pertama harus huruf atau underscore (_) • Tidak boleh mengandung spasi / blank , tanda – , dan tanda #

  5. Konstanta • Konsep konstanta mirip dg variabel • Nilai suatu kontanta tidak dapat berubah-ubah selama program berjalan. • Cara mendeklarasikan konstanta: #define nm_konstanta nilai;

  6. Tipe Data Dasar C++ • Tipe data adalah jenis data yang dapat digunakan di dalam komputer.

  7. Tipe Data Char • Karakter ASCII (American Standard for Information Interchange)

More Related