2012年2月6日 星期一

[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";

} 

 



 


沒有留言:

張貼留言