공백을 포함한 문장을 입력 받아서 홀수 번째 단어를 차례로 출력하는 프로그램을 작성하시오.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char arr[100];
int i;
int cheak=0;
printf("공백을 포함한 문장을 입력하시오.\n");
gets(arr);
for(i=0;arr[i]!='\0';i++)
{
if(arr[i]==' ')
{
cheak++;
if(cheak%2==1) printf("\n");
i++;
}//if arr
if(cheak%2==0) printf("%c",arr[i]);
}//for
system("pause");
return 0;
}