#include "stdafx.h"#using using namespace System;Int32 main(void){ Int32 x; Int32 *y; y = &x; *y = 50; Console::WriteLine(x); return 0;}