CS61C Project1

PartA

PartA1

using pointer to pointer impl 2D array

int **pp = malloc(sizeof(int*)*row);
for (int i =0;i < col;i++)
    pp[i] = malloc(sizeof(int)*col);

this snippet occurs frequently, but what difference between pp[0] and pp?
as we all know the array name is equivalent with the first element in array.

free() priority

linux command diff

scanf

PartA2

PartB

posted @ 2021-10-14 08:49  ijpq  阅读(105)  评论(0编辑  收藏  举报