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]);
    	}
    }