IDApro 如何识别 sprintf()?

逆向工程 艾达 拆卸
2021-06-26 04:58:38
#include<stdio.h>
int main()
{
    char buffer[50];
    int a = 10, b = 20, c;
    c = a + b;
    sprintf(buffer, "Sum of %d and %d is %d", a, b, c);

    // The string "sum of 10 and 20 is 30" is stored
    // into buffer instead of printing on stdout
    printf("%s", buffer);

    return 0;
}

这段代码是怎么被IDApro反汇编的?

0个回答
没有发现任何回复~