首页 > TAG信息列表 > CS61c

CS61c hw2 note

hw2 note HW2.1、2.2 位运算,略 HW2.3. Memory Alpha Model #define SPOCK 1701 int KIRK = 1701; int sulu(int scotty) { return scotty * scotty; } int main(int argc, char *argv[]) { int *chekov = malloc(sizeof(int) * 1701); if (chekov) free(chekov); sulu(SPOCK);