c语言程序设计 使用函数调用实现两个字符串得连接

日期:2015-12-09 14:20:02 人气:1

c语言程序设计 使用函数调用实现两个字符串得连接

#include char *catstr(char *a,char *b) { char *p=a,*q=b; while(*p) p++; while(*q)*p++=*q++; *p='\0'; return a; } void main() { char s1[50]="abcdef"; char s2[]="12345678890"; printf("s1+s2=%s\n",ca
    A+
热门评论