반응형
#include "stdafx.h"
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int len = 0;
char temp[20] = "hello";
char temp2[20];
len = strlen(temp); // 문자열의 길이
printf("%d", len);
strcpy_s(temp2, temp); // temp를 temp2에 복사한다.
printf("%s", temp2);
if (!strcmp(temp, temp2))// 두개의 문자열이 똑같다면 출력하지 않는다.
printf("OK");
return 0;
}
반응형
'Study > C' 카테고리의 다른 글
C언어 - 난수 발생함수(random함수) (0) | 2018.08.27 |
---|---|
C언어 - 문자열 (계산기 만들기(Atoi함수사용)) (0) | 2018.08.27 |
C언어 - 배열 ( 길이가 가장 긴 단어 찾기) (0) | 2018.08.27 |
C언어 - 배열 (Atoi함수사용 없이 문자열 > 상수형 구현) (0) | 2018.08.27 |
C언어 - 배열 (LED 켜기 게임) (0) | 2018.08.27 |