tajap.c: In function ‘main’:
tajap.c:38:2: warning: passing argument 1 of ‘strlen’ makes pointer from integer without a cast [enabled by default]
  typing=strlen(mysent);
  ^
In file included from /usr/include/stdio.h:29:0,
                 from tajap.c:1:
/usr/include/string.h:33:9: note: expected ‘const char *’ but argument is of type ‘char’
 size_t  _EXFUN(strlen,(const char *));

컴파일하면 이딴오류가 떠여...


아래 세개에서 뭐가 문제가 있을거같은데...strlen에 왜 오류나는지좀 알려주세요ㅠㅠ

char mysent;

int typing=strlen(mysent);

mysent=getche();