c语言字符串连接函数

c语言字符串连接函数

字符串直接用strcat连接就好了,哪来这么麻烦。#include "stdio.h"#include "string.h"main(){ char a[30]="abcde",
Python160