什么是简短的说明性C程序,它演示了反汇编中易失性和非易失性之间的区别?
即
int main() { volatile int x; ??? }
VS
int main() { int x; ??? }
我们可以???用生成的代码不同来替换它们?
???
c volatile
c ×1
volatile ×1