ArcherLyu
奔跑着的小鸟
努力奔跑!
全部博文(30)
2017年(1)
2016年(3)
2015年(3)
2014年(23)
wb123456
缘玉111
xyh55620
Lemon_乐
ashnah
粒子加速
judupeng
jerry960
haibei25
分类: C/C++
2014-10-08 15:11:09
原文地址:bzero函数及相关字符串函数 作者:sunstrongLU
原型:extern void bzero(void *s, int n); 用法:#include 功能:置字节字符串s的前n个字节为零。 说明:bzero无返回值。 举例: // bzero.c #include #include main() { struct { int a; char s[5]; float f; } tt; char s[20]; bzero(&tt,sizeof(tt)); // struct initialization to zero bzero(s,20); clrscr(); printf("Initail Success"); getchar(); return 0; } 相关函数:,
上一篇:munmap()函数
下一篇:fstat、stat和lstat 区别(转)
登录 注册