函数的引用和值拷贝

举个例子从代码说起

#include<stdio.h>
struct HString
 {
   char *ch; // 若是非空串,则按串长分配存储区,否则ch为NULL
   int length; // 串长度
 };

void StrPrint(HString T)
 { // 输出T字符串。另加
   int i;
   for(i=0;i<T.length;i++)
     printf("%c",T.ch[i]);
   printf("\n");
 }
void StrCopy(HString &T,HString S)
 { // 初始条件:串S存在。操作结果:由串S复制得串T
   StrPrint(T);
  
 }
void InitString(HString T)
 { // 初始化(产生空串)字符串T。另加
   T.length=5;
   T.ch="hhhhh";
 }


void main()
{ 
 HString T;


  T.ch = "asdf";
  T.length = 4;
 InitString(T);	
 StrPrint(T);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值