Return 0;
#include <iostream>
using namespace std;
int main(){
int x;
int* ptr1 = &x;
*ptr1 = 5;
cout << x << endl;
system("PAUSE");
}
#include <iostream>
using namespace std;
int main(){
int x;
x = 5;
cout << x << endl;
system("PAUSE");
}