Stanford http://cs107e.github.io/ Popular repositoriesLoading cs107e.github.iocs107e.github.ioPublic Backing repository for CS107e site. Don't commit here (automatically managed). Read content on website SCSS144128 homebrew-cs107ehomebrew-cs107ePublic ...
Abstract 本人正在学习StanfordCS107,课程中让人不停的看汇编,写汇编,让我对数组和指针有个很深的认识。 区别 int *a是一个指针,他是一个变量,可以取地址。 int a[2]中的a是一个值,值为数组的地址。不能取地址。汇编在汇编里:这两个是这样的: 数组: 指针: 指针和数组 with函数首先:a的类型是int[2]...