1. 首页
  2. 课程学习
  3. C++/C
  4. C语言高级实用技术精讲

C语言高级实用技术精讲

上传者: 2018-12-18 17:58:50上传 RAR文件 15.15MB 热度 32次
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); }
用户评论