Thursday, May 24, 2018

CONTOH CODING POINTER PADA C++

#include <conio.h>
#include <iostream.h>

main ()
{
    int a;
   int b;
   int c;
   int *aptr;
   int *cptr;
   cout<<"NILAI A : ";cin>>a;
   cout<<"NILAI B : ";cin>>b;
   cout<<"ALAMAT NILAI A ADALAH : "<<&a<<endl;
   cout<<"ALAMAT NILAI B ADALAH : "<<&b<<endl;
   cout<<endl;
   cout<<"ALAMAT POINTER : "<<aptr<<endl;
   c=a+b;
   cout<<"PENJUMLAHAN A DAN B ADALAH : "<<c<<endl;
   cout<<"ALAMAT HASIL PENJUMLAHAN   : "<<&c<<endl;
   cout<<"POINTER PENJUMLAHAN        : "<<cptr;
getch();
}

No comments:

Post a Comment

CONTOH CODING LINKED LIST MENGGUNAKAN BORLAND C++

CONTOH CODING LINKED LIST MENGGUNAKAN BORLAND C++ #include<stdlib.h> #include<conio.h> #include<iostream.h> struc...