翻转字符串
发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,有一个字符数组的内容为"student a am i",请你将数组的内容改为"i am a student"不能使用库函数。只能开辟有限个空间(空间个数和字符串的长度无关)#include #incl
有一个字符数组的内容为"student a am i",请你将数组的内容改为"i am a student"
不能使用库函数。只能开辟有限个空间(空间个数和字符串的长度无关)
#include#include void reverse(char *left, char *right){ while(left