cfcn_ex.c
资源名称:CppPrimer.rar [点击查看]
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:0k
源码类别:
书籍源码
开发平台:
Visual C++
- const char *str = "hello";
- void *malloc(int);
- char *strcpy(char *, const char *);
- int printf(const char *, ...);
- int exit(int);
- int strlen(const char *);
- int main()
- { /* C language program */
- /* allocate space to hold a copy of str */
- char* s = malloc(strlen(str)+1);
- strcpy(s, str); /* copy s to str */
- printf("%s, worldn", s); /* print s followed by ", worldn" */
- exit(0); /* exit program and return 0 to the OS */
- }