2015年9月23日

malloc 实现二维数组

摘要: #include #include int main() { int **a = malloc(sizeof(int)*3); a[0]= malloc(sizeof(int)*2); a[1]= malloc(sizeof(int)*2); a[2... 阅读全文

posted @ 2015-09-23 09:59 zmrlinux 阅读(367) 评论(0) 推荐(0)

导航