C语言字符指针的问题_百度知道
最佳答案: #include <stdio.h>#include <stdlib.h>char *prompt(char *mesg){int cur_array_len = 5;int pos = 0;char ch;char *text = NULL;...
C语言字符串指针问题_百度文库
2015年2月2日 - C语言字符串指针问题_计算机软件及应用_IT/计算机_专业资料。C语言字符串指针问题C 语言字符串指针问题在 C 语言中,可以用两种方法访问一个字符串。 ...
[求助]字符指针问题_c语言吧_百度贴吧
printf("c = %s\nd = %s\n",c,d); printf("Hello, World!\n"); return 0;}void copy_string(char *p1,char *p2){ //用字符指针变量作为形参 for...