제목 : 함수_내장함수_데모/비교검사복사.c
글번호:
|
|
347
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2013/01/17 오후 10:59:34
|
조회수:
|
|
3910
|
#include <stdio.h>
#include <string.h>
void main()
{
char str1[80];
char str2[80];
int i;
printf("첫번째 문자열 입력:");
gets(str1);
printf("두번째 문자열 입력:");
gets(str2);
printf("%d", strlen(str1));
printf("%d", strlen(str2));
i = strcmp(str1, str2);
if(!i)
{
printf("같다");
}
else if(i < 0)
{
printf("작다");
}
else
{
printf("크다");
}
if(strlen(str1) + strlen(str2) < 80)
{
strcat(str1, str2);
printf("%s\n", str1);
}
strcpy(str1, str2);
printf("%s %s\n", str1, str2);
if(strchr("hello", 'e'))
{
printf("\ne is in hello\n");
}
if(strstr("hi there", "hi"))
{
printf("\nfound hi\n");
}
}