这是我试图测试的C源代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
main()
{
char c[81];
gets(c);
str_inv(c);
puts(c);
}
void str_inv(char *s[])
{
int i, j;
char *temp;
temp=calloc(1 ,strlen(s)*sizeof(char));
if(temp==NULL)
{
fprintf(stderr, "Error: Memory not allocated.");
exit(1);
}
for(i=0, j=strlen(s)-1; i<strlen(s); i++, j--)
{
temp[i]=s[j];
}
for(i=0; i<strlen(s); i++)
{
s[i]=temp[i];
}
free(temp);
}
程序的输出如下所示:
**abc**
**Process returned 0 (0x0) execution time : 2.262 s**
**Press any key to continue.**
函数str_inv
中的代码在main()
函数中工作正常,但不在单独的函数中。
功能有什么问题?
答案 0 :(得分:2)
char *s[]
是指向char
char s[]
是char
将功能更改为
void str_inv(char s[])
作为旁注。不推荐使用gets()
,请不要使用它。请改用fgets()
。