原创 C / C++ 動態記憶體宣告及釋放

2020-12-01   動態宣告   C 語言方法 :  int  *i = (int*) malloc(sizeof(int)); int  *j = (int*) malloc(10*sizeof(int)); C++語言方法: in