test 2018-06-21 10:19:42 -04:00 committed by admin
parent 43033a2a6e
commit 579c9d18f1
1 changed files with 19 additions and 19 deletions

View File

@ -229,11 +229,11 @@ I must **emphasise** this.
// more pointers // more pointers
#include <iostream> #include <iostream>
using namespace std; using namespace std;
int main () int main ()
{ {
int firstvalue = 5, secondvalue = 15; int firstvalue = 5, secondvalue = 15;
int * p1, * p2; int * p1, * p2;
@ -247,4 +247,4 @@ int main ()
cout << "firstvalue is " << firstvalue << '\n'; cout << "firstvalue is " << firstvalue << '\n';
cout << "secondvalue is " << secondvalue << '\n'; cout << "secondvalue is " << secondvalue << '\n';
return 0; return 0;
} }