[404218]: / Code / C++ / C++ Tutorial Source Files / 32_C++_Pointers3.cpp

Download this file

24 lines (20 with data), 393 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
using namespace std;
/*
cout << "Age: " << &age << endl;
cout << "Gpa: " << &gpa << endl;
cout << "Name: " << &name << endl;
*/
int main()
{
int age = 19;
int *pAge = &age;
double gpa = 2.7;
double *pGpa = &gpa;
string name = "Mike";
string *pName = &name;
cout << pAge << endl;
cout << pGpa << endl;
cout << pName << endl;
return 0;
}