指针
#include <iostream>
using namespace std;
void changeValue(int n)
{
n = 10;
}
int main(int argc, char *argv[])
{
int num = 1;
changeValue(num);
cout << num << endl; // 这里输出num = 1
return 0;
}
原文地址:https://www.cnblogs.com/CoderHong/p/8985695.html
时间: 2024-11-11 12:20:46