728x90
반응형
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
//fgets(str, sizeof(str), stdin);
//printf("%s", str);
//str[strlen(str) - 1] = '\0';
//// 이렇게 하면 마지막 개행문자를 없앨수 있음
char* ps1 = "xoxoxoxoxo";
char* ps2 = NULL;
ps2 = (char*)malloc(sizeof(char) * 20);
if (ps2 == NULL)
{
return -1;
}
strcpy(ps2, ps1);
printf("%s", ps2);
free(ps2);
return 0;
}
728x90
반응형
'Language > C & C++' 카테고리의 다른 글
memset Function (0) | 2022.10.28 |
---|---|
[C, Python]Compare Score (0) | 2022.10.26 |
[TIP] DO NOT USE fflush function (0) | 2022.10.25 |
[C] How to Handle String (0) | 2022.10.25 |
[C] Convert matrix from text file (0) | 2022.10.23 |