摘要: 功能:将整型数存放入字符数组中,并无间隔输出。#include <stdio.h>#include <stdlib.h>#include <string.h>#include <memory.h>int main(){ char *sendd=(char*)malloc(100); char buf[10]; int len1,len2,len3; for(int i=0;i<10;i++) buf[i]='\0'; int a=21; unsigned long b=333333... 阅读全文
posted @ 2011-10-25 20:53 shiney 阅读(4897) 评论(0) 推荐(0) 编辑