发布网友 发布时间:2022-04-24 13:45
共3个回答
热心网友 时间:2023-05-28 15:39
strcmp(结构名[i].xingming,输入的名字)==0追问那用什么来存我输入的姓名啊?
追答char型数组就可以了
热心网友 时间:2023-05-28 15:39
//---------------------------------------------------------------------------
#include <stdio.h>
void fun(char * const a)
{
char t;
int b=0,e=0;
while (a[e])++e;
--e;
while (b<e)
{
t=a[b];
a[b++]=a[e];
a[e--]=t;
}
}
int main(void)
{
char ps[80];
gets(ps);
fun(ps);
puts(ps);
return 0;
}
//---------------------------------------------------------------------------
热心网友 时间:2023-05-28 15:40
1楼主,正解