/*
문자 vs 문자열
%c %s
'a' "hello"
char b; char str[50];
str[i] str
문자열의 끝 : NULL 널
#include <stdio.h>
#include <string.h>
int main()
{
int i, c=0;
char str[50]={}; //항상 배열은 초기화!!
//1. 공백이 없을때 입력받는 방법
//scanf("%s",str);
//2. 공백을 포함해서 입력받는방법 (문장)
gets(str);
// for(i=0 ; str[i]!=NULL ; i++)
// {
// if(str[i]=='t')
// {
// c++;
// printf("%c",str[i]);
// }
// }
printf("%s",str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
char str[31]={};
gets(str);
printf("%s", str);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
int i;
char str[101]={};
gets(str);
for(i=0 ; str[i]!=NULL ; i++)
{
if(str[i]!=' ')
{
printf("%c", str[i]);
}
}
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
int i,a=0,b=0;
char str[101]= {};
scanf("%s", str);
for(i=0 ; str[i]!=NULL ; i++)
{
if(str[i]=='c' || str[i]=='C')
{
a++;
if(str[i+1]=='c' || str[i+1]=='C')
{
b++;
}
}
}
printf("%d\n", a);
printf("%d", b);
return 0;
}
*/
/*
#include <stdio.h>
#include <string.h>
int main()
{
int i,a=0;
char str[101]={};
scanf("%s", str);
for(i=0 ; str[i]!=NULL ; i++)
{
if(str[i]=='love') // x
{
a++;
}
}
printf("%d", a);
return 0;
}
*/