标签:style blog color os strong io cti 代码
by:比方
1 #include"stdio.h" 2 int function(int a,int b) 3 { 4 int c=a+b; 5 int i=0; 6 do 7 { 8 c=c+i; 9 }while(i<50); 10 return c; 11 } 12 void main() 13 { 14 function(1,2); 15 }
反汇编代码
1 #include "stdio.h" 2 3 4 int function(int a,int b) 5 6 {
1 int c=a+b;
1 int i=0;
012E1A67 mov dword ptr [i],0
do { c=c+i;
1 }while(i<50);
1 return c;
012E1A86 ret
反汇编逆向实例_dowhile语句反汇编,布布扣,bubuko.com
标签:style blog color os strong io cti 代码
原文地址:http://www.cnblogs.com/hailunchina/p/3885100.html