Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面的代码片段在 VS2019 版本 16.11.3 中不返回 0。为什么?
_text SEGMENT ;.486 ;.model flat,stdcall ;.stack 4096 .code main PROC mov al, 0 add al, 5 ret main ENDP _text ENDS END
控制台窗口如下所示: