赞
踩
话不多说,步入正题:
我们参照文档,来学习几个库函数;(教会你怎么使用文档来学习库函数)。
strcpy
-
- char * strcpy(char * destination, const char * source);
memset
void * memset ( void * ptr, int value, size_t num);
这里对新接触c语言的同学我们推荐一个查库函数比较好用的网站点击这里。
打开网站我们查找输入我们向了解的函数,拿我们上边的strcpy来举例子吧。
那么我们直接来分析他的英文部分吧,Copies the C string pointed by source into the array pointed by destination,拷贝那个由source指向的c字符串,到一个数组里去,pointed by destation,把source里的内容拷贝到
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。