どのようにポインタを使って整数データの加算を行いますか?
コードは以下の通りです。
#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;
}