|
김경완 님이 쓰신 글 :
: 감사합니다..
:
: 도와주셔서 많이 진전되었습니다.
: 제가 잘 못알아 들어서 괴로우시죠...^^*
: 그래도 도와주세요...제가 나중에 기회되면 맛난거 사드릴께요..^^*
: 감사합니다..
#include <string.h>
#include <stdio.h>
int main(void)
{
char input[16] = "abc,d";
char *p;
/* strtok places a NULL terminator
in front of the token, if found */
p = strtok(input, ",");
if (p) printf("%s\n", p);
/* A second call to strtok using a NULL
as the first parameter returns a pointer
to the character following the token */
p = strtok(NULL, ",");
if (p) printf("%s\n", p);
return 0;
}
strtok <-- 이넘을 함 써보시지염...문자 짤라서 입력 할때 편리 해여..
|