Here the concise c code:
#include <stdio.h>
int main()
{
printf("abcdefg\n");
return 0;
}
when I open it with ollydbg, and then type E (executable module), right click the a module and select 'view executable file'. it will show the below window:
However, when I ctrl + B search for the 'printf', I got three result (ctrl + L will find the next)
My question is:
- In my code is only one 'printf' function, why can I find 3 'printf' in the ollydbg.