1 / 8

Struktur dan Pointer

Struktur dan Pointer. Struktur. Sekumpulan variabel yang masing-masing dapat berbeda tipe data, Dikelompokkan ke dalam satu nama Tiap field menyimpan data dari tipe dasar tertentu. Contoh :. struct mhs { char nama; char nim; int tts, tas; float akhir; }. POINTER.

bina
Télécharger la présentation

Struktur dan Pointer

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. Struktur dan Pointer

  2. Struktur • Sekumpulan variabel yang masing-masing dapat berbeda tipe data, • Dikelompokkan ke dalam satu nama • Tiap field menyimpan data dari tipe dasar tertentu

  3. Contoh : • struct mhs • { • char nama; • char nim; • int tts, tas; • float akhir; • }

  4. POINTER • Pointer adalah variable yang yang menyimpan alamat memory • Pointer Sifat dinamis • fungsi malloc(), mengalokasikan memori • free() untuk membebaskan memori

  5. bentuk umum dari pernyataan variabel pointer dalam C++ adalah Type *variabel-name • Dengan : • Type adalah tipe dasar pointer • Variabel name adalah nama variabel pointer • * adalah variabel pada alamatnya yang ditentukan oleh operand. • Contoh : • Int *int_pointer; // pointer to integer • Float *float_pointer; // pointer to float

  6. OPERATOR POINTER • operator alamat (yang dilambangkan dengan simbol &) • Operator unary yang mengembalikan alamat dari operandnya.

  7. Contoh1 • Int balance, value; • Int *balptr; • Balance = 3200; // step 1 • Balptr=&balance; // step 2 • Value=*balptr; // step 3

  8. //Program:pointer.cpp #include <iostream.h> int main() { int *ptr, num; // Step 1 ptr = &num; // Step 2 *ptr = 100; // Step 3 cout << num << " "; (*ptr)++; // Step 4 cout << num << " "; (*ptr)*=2; // Step 5 cout << num << "\n"; return 0; } contoh2

More Related