
C++
文章平均质量分 66
skyblooming
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
整数转化为字符串
#include "stdafx.h" void int2str(int num, char *s); int _tmain(int argc, _TCHAR* argv[]) { int a = 1234 ; char *s = (char *) malloc(sizeof(char)*10); int2str(a, s); //c原创 2008-10-23 21:46:00 · 696 阅读 · 0 评论 -
memset 函数
转帖:http://blog.ednchina.com/lijin305/31098/message.aspx原型:extern void *memset(void *buffer, int c, int count); 用法:#include 功能:把buffer所指内存区域的前count个字节设置成字符c。 说明:返回指向buff原创 2008-10-12 15:10:00 · 578 阅读 · 0 评论