解析如何用指针实现整型数据的加法
更新时间:2013年05月31日 17:44:17 作者:
本篇文章是对用指针实现整型数据加法的方法进行了详细的分析介绍,需要的朋友参考下
代码如下所示:
#include <stdio.h>
int *add(int a,int b)
{
int c = 0; //原题没有这行
int *p = NULL;
p = &c; //原题没有这行
*p = a+b;
return p;
}
int main(void)
{
printf("%d/n",*add(2,3));
return 0;
}
复制代码 代码如下:
#include <stdio.h>
int *add(int a,int b)
{
int c = 0; //原题没有这行
int *p = NULL;
p = &c; //原题没有这行
*p = a+b;
return p;
}
int main(void)
{
printf("%d/n",*add(2,3));
return 0;
}
最新评论