[404218]: / Code / C++ / C++ Tutorial Source Files / 33_C++_Pointers4.cpp

Download this file

22 lines (18 with data), 335 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#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 << *&gpa;
return 0;
}