본문 바로가기
C언어

[C언어] 문자열을 입력받아 영단어의 개수를 화면에 출력하시오

by 이얏호이야호 2020. 5. 4.

공부하시는대에 도움이 됐으면 좋겠습니다.

답안코드 확인해주세요!

 

더보기
#include <string.h>

#include <stdio.h>

char s[] = "Man is immortal, because he has a soul";

char seps[] = " ,\t\n";

char *token;

int main( void ) {

	int count=0;

	token = strtok( s, seps );

	while( token != NULL ) {

		count++;

		token = strtok( NULL, seps );

	}

	printf("단어의 수는 %d입니다.\n", count);

	return 0;

}

 


더 많은 C코드가 보고 싶다면?

https://chuinggun.tistory.com/category/C%EC%96%B8%EC%96%B4

댓글