Reverse Eng

리버싱 공부

파아랑새 2018. 1. 22. 23:48

# include <stdio.h>

int f(int, int);
int main(void) {
 int x = 0x0;
 x = f(10, 20);
 return 0;
} // end of main function
int f(int p1, int p2) {
 int t = 0x0;
 t = p1 + p2;
 return t;
} // end of f function

Sheet1.xlsx

 

 

저작자표시 비영리 변경금지 (새창열림)