2009年9月11日 星期五

C/C++筆記-malloc動態配置記憶體

/* 配置一個int大小的記憶體空間 */
int *p;
p = (int *)malloc(sizeof(int));

/* 配置一個struct大小的記憶體空間 */
struct ex{
  int a;
  char[2];
};
struct ex *p;
p = (struct ex *)malloc(sizeof(struct ex));
free(p); //釋放記憶體
##ShowAll##

0 意見 :

張貼留言