2015年10月28日

C语言之分配

摘要: 1 #include "stdio.h" 2 void main() 3 { 4 int arr[3] = {1,2,3}; 5 int* arr2 = malloc(3*sizeof(int));//malloc calloc relloc 6 arr2[0] = 1; ... 阅读全文

posted @ 2015-10-28 15:28 Zing_Z 阅读(189) 评论(0) 推荐(0)

导航