# include <stdio.h>

 

int main()
{
char a='A';
char b='D';
int i;
i=strcmp(a, b);
printf("%d", i);

}

 
 왜 출력 에러가 나는거임?

 

아무리 봐도 오류가 없는데;;