[VC(Visual C++)]- VC與組合語言混合開發

[VC(Visual C++)]- VC與組合語言混合開發

[VC(Visual C++)]- VC與組合語言混合開發

本篇分享VC與組合語言混合開發,有興趣的(C/P)同好,歡迎來(C/P)一下,哈哈 ^ ^

程式碼

#include <iostream>
usingnamespace std;
//C語言不額外增加變數將2個變數值互換!
void main()
{    
    float a=9.004, b=-28.5;
    //作弊法... for int or float
    _asm {
     push a
     push b
     pop a
     pop b}
    cout<< a <<"  "<<b<<"\n";
} 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *