; 5 : int c=0;
mov DWORD PTR _c$[ebp], 0
I don't understand the syntax, why 开发者_运维问答c is referenced without bracket and why add [ebp] ?
EBP
is the frame pointer. Since c is a local variable or argument, c
is an offset relative to the frame pointer.
精彩评论