일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html plug-in
- relative path
- #C++ has~a
- #bubbleSort
- #CallByAddress
- docker example
- hyperledger transaction
- 하이퍼레저패브릭
- html id
- git flow
- border-box
- #3차원배열
- #자바상속#자바이즈어#is~a
- #android activity
- html multimedia
- #1차원배열
- #binary
- html video
- #다차원포인터
- html charset
- html5 new tag
- #JAVASCRIPT
- html code
- 토큰경제
- #성적관리프로그램
- #C++ 연산자함수오버로딩
- html youtube
- mac terminal command
- #2차원배열
- html object
Archives
- Today
- Total
A sentimental robot
strdup함수 만들기 본문
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char * my_strdup(char *s)
{
int n;
char *p;
n = strlen(s)+1; // includes null character
p = (char*)malloc(n);
strcpy(p,s);
return p;
}
void main()
{
char *p;
p = my_strdup("HELLO");
printf("%s\n", p);
free(p);
p = my_strdup("Hi");
printf("%s\n", p);
}
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void my_strdup(char **t, char *s)
{
int n;
char *p;
n = strlen(s)+1;
p = (char *)malloc(n);
strcpy(p,s);
*t = p;
}
void main()
{
char *p;
my_strdup(&p,"hi");
printf("%s\n",p);
}
'C ' 카테고리의 다른 글
함수포인터 (0) | 2018.01.03 |
---|---|
strdup함수 활용예제 (0) | 2018.01.03 |
strlen함수 만들기 (0) | 2018.01.02 |
2차원배열 동적할당 (0) | 2018.01.02 |
다차원포인터 활용 (0) | 2018.01.02 |