C 的入门者请进,否则不要花时间click

//只需要把下面代码paste到new project, run, 即看到效果
//The goal of this program is to show:
// the relationship of Pointer and Address in C languange.

//created by Feb 4th, 2002   
//modified by Feb 4th,2004

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

 //if put   3, result=3^3+3=12;
 //if       4, result=4^4+4=20...
double squarePlus(int a,double *b);

int main(void)
{
    double x=3,y=3,result=0;
    printf("/n 0.....y Address = %p/n",&y); // print y address

 //scanf(y);
    result=squarePlus(3,&y);    
                                
    printf("/n SquarePlus of %f = %2.0f /n",x,result);

 return 0;
}
/*

 0.....y Address = 0012FF70
 1.....pAddress(b) = 0012FF70
 2.....double value(*b) = 3.000000
...processing: (*b) *= *b;

 SquarePlus of 3.000000 = 12
Press any key to continue

*/

//**********************************************************//
double squarePlus(int a,double *b)
{
   //Print the address of pointer:
   printf(" 1.....pAddress(b) = %p /n",b);

   //Print the value after calcuation:
   printf(" 2.....double value(*b) = %f/n",*b);

   //Save before you have to change.
   double k = *b;  
   //b=&k; //[YES] if b= sth's address;
            //        *b= sth's value;


   // b is always the Result:
   *b=a;
   (*b) *= *b;                 //multipile itself
   printf("...processing: (*b) *= *b;/n");
 
   *b=*b+k;        //[YES] value itself +1;
   //b=b+b;        //[NO]  just make "b" to another address;

   return *b;
   //return (*b)*(*b)+(*b);  //[YES] works also
   //return b;      // [NO] cannot convert from 'double *' to 'double'
}

//http://www.eurasia.edu/bbs/ti_view.asp?FN_id=15&FC_root_id=115073&FC_id=115073


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值