Cheatography
https://cheatography.com
Vocab
Three MIPS steps: Fetch, Decode, Execute
C Compiler is preprocessor and translator
Linker assembles all functions and make final exe
Loader loads program into memory |
Values after
/ x = 7, y = 7, and z = 2 /
if (z = x < y) { x += 3; y -= 1; }
else x = y++;
x = 7, y = 8, z = 0 |
|
|
Constant Type
29LU = unsigned long integer
"t" = string
-39.54Lf = long double
7hd = short integer |
Values
(p1 = 2000)(*p1 = 200)(&p1 = 2032)(p2 = 2016)
''p2 = 4)(&p2 = 2024)(&(s[1]) = 2041)((s+3) = 0) |
Loop Array C
int A[]; int i = 0; do {p = p*A[i]; i++;} while (A[i]); |
|
Created By
Metadata
Comments
OaklandRecruitment, 15:43 7 May 14
Thanks bro! :)
Add a Comment
Related Cheat Sheets