반응형

#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;
}

반응형

+ Recent posts