// C6_3.cpp : Defines the entry point for the console application. // 夹把计ㄧ计 #include "stdafx.h" #include using namespace std; int M66(int* x); // ㄧ计 int main(int argc, char* argv[]) { int x = 22; int* y = &x; // 夹跑计 cout << endl << "肚癳 = " << y; cout << endl << "M66(y) = " << M66(y); cout << endl << "x = " << x; cout << endl; return 0; } // ㄧ计砞﹚ int M66(int* x) { cout << endl << " = " << x; *x *= 66; return *x; // 肚砆э跑 }