C语言高级实用技术精讲

时间:2014-12-19 11:56:45
【文件属性】:

文件名称:C语言高级实用技术精讲

文件大小:15.15MB

文件格式:RAR

更新时间:2014-12-19 11:56:45

c语言代码 源代码 各类函数的代码

mollc函数的代码 /* Note:Your choice is C IDE */ #include #include main() { char * str; if((str=(char *)malloc(50))==NULL) { printf("\n No enough memory to allocata for the string."); exit(1); } printf("\n Input the string:"); gets(str); puts(str); free(str); }


网友评论