프로그래밍언어/C & CPP
동적 메모리 할당
Isaac87
2014. 8. 14. 15:23
malloc
#include<stdio.h> if(p==NULL) *p = 10; free(p); return 0; |