摘要:
// 流程控制语句反汇编//Author:乾卦 Date:2014-5-8#includeint main(){ int a=1,b=10; if(a>b) { a=b; } a=2; b=11; return 0;}//if语句的反汇编#i... 阅读全文
posted @ 2014-05-08 21:38
乾卦
阅读(594)
评论(0)
推荐(0)
摘要:
int main(){000000013FA01010 push rdi 000000013FA01012 sub rsp,50h 000000013FA01016 mov rdi,rsp 000000013FA01019 mov ... 阅读全文
posted @ 2014-05-08 17:18
乾卦
阅读(389)
评论(0)
推荐(0)
摘要:
#include#includeusing namespace std;int main(){ //初始化10个元素,每个值都为0 vector fvec(10); //输出 for(vector::size_type ix=0;ix!=fvec.size();ix++) ... 阅读全文
posted @ 2014-05-08 10:22
乾卦
阅读(1580)
评论(1)
推荐(0)