指针问题
发表在C语言图书答疑
2017-01-19
是否精华
是
否
版块置顶:
是
否
#include <iostream>
using namespace std;
swap(int *a,int *b)
{
int tmp;
tmp=*a;
*a=*b;
*b=tmp;
}
void main()
{
int x,y;
int *p_x,*p_y;
cout << " input two number " << endl;
cin >> x;
cin >> y;
p_x=&x;p_y=&y;
if(x<y)
swap(p_x,p_y);
cout << "x=" << x <<endl;
cout << "y=" << y <<endl;
}
指针的这个*符号 在什么时候应该加上去 什么时候应该不加?
a和a*的区别又是什么?
首页上一页 1 下一页尾页 3 条记录 1/1页