以下是我的程序
#include<stdio.h>
#include<string.h>
void main()
{
void dao ( char x[10],char y[10]);
char zheng[10];
char ni[10];
printf ("please enter:");
gets(zheng);
dao (char zheng[10],char ni[10]);
printf("ni xu is:");
puts(ni);
}
void dao ( char x[10],char y[10])
{
int len,i;
len=strlen(x);
for(i=0;i<len;i++)
y[i]=x[len-i-1];
}
出错为:
E:\c语言\a04.cpp(10) : error C2144: syntax error : missing ')' before type 'char'
E:\c语言\a04.cpp(10) : error C2660: 'dao' : function does not take 0 parameters
E:\c语言\a04.cpp(10) : error C2059: syntax error : ')'
执行 cl.exe 时出错.
a04.obj - 1 error(s), 0 warning(s)