Table of contents
코드
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
char *str[3];
char temp[100];
int i;
for (i=0; i<3; i++)
{
printf("문자열을 입력하세요..\n");
gets_s(temp);
str[i] = (char*)malloc(strlen(temp) + 1);
strcpy_s(str[i], strlen(temp) + 1, temp);
}
for (i=0; i<3; i++)
{
printf("%s\n", str[i]);
}
for (i=0; i<3; i++)
{
free(str[i]);
}
}
'소프트웨어 > C' 카테고리의 다른 글
C언어 strcpy 함수 구현하기 (0) | 2022.02.20 |
---|---|
C언어 문자열 포인터 Swap 예시 (0) | 2022.02.20 |
C언어 구조체 배열 선언 및 초기화 (0) | 2022.02.20 |
C언어 구조체 Swap 함수 (0) | 2022.02.20 |
C언어 구조체 연결리스트 정렬 삽입 삭제 (0) | 2022.02.20 |