strcpy的问题
#include "string.h"#include "stdio.h"
void main()
{
char a[9]="11001755",buf[20], *p=a;
int j=0;
char cardfsyz;
while(*p!=0)
{
j+=sprintf(buf+j,"%x",*p++);
}
strcpy(cardfsyz,buf);
printf("%s",cardfsyz);
}
在运行时显示error C2664: 'strcpy' : cannot convert parameter 1 from 'char' to 'char *'
应该怎么改呢