CSAPP Notes Basicwritten by SJTU-XHW Reference: CMU - 213, Computer Systems A Programmer’s Perspective 3rd Edition by Randal Bryant, David O’Hallaron 本人知识浅薄,文章难免有问题或缺漏,欢迎批评指正! 内容很长,写起来很慢 😳 Chapter 0. Intro0.1 Ints are not Integers, Floats are not Reals $x^2\ge 0$:int(32-bit)may overflow; $a+(b+c)=(a+b)+c$:floats may discard some “unsignificant” digits; 0.2 Learn Assembly but never write it0.3 Memory Matters: Unbounded1234567891011121314typedef struct { int a[2]; double d;}...