#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();
}
Subscribe to:
Post Comments (Atom)
CONTOH CODING LINKED LIST MENGGUNAKAN BORLAND C++
CONTOH CODING LINKED LIST MENGGUNAKAN BORLAND C++ #include<stdlib.h> #include<conio.h> #include<iostream.h> struc...
-
#include <iostream.h> #include <conio.h> #include <fstream.h> #include <stdio.h> #include <stdlib.h> struct pa...
-
#include <iostream.h> #include <conio.h> #include <fstream.h> #include <stdio.h> #include <iomanip.h> #include...
-
#include <iostream.h> #include <iomanip.h> #include <stdio.h> #include <conio.h> void coba(); struct rumahsakit { ...
No comments:
Post a Comment