Does .data goes to stack or heap in masm?
When you declare variables in the .data segment in MASM, where are those vars allocated? In the stack or in the heap memory? And what about the ".data?" seg开发者_开发技巧ment?
Neither, they are allocated statically instead.
精彩评论