8 lines
170 B
C
8 lines
170 B
C
|
|
int main()
|
||
|
|
{
|
||
|
|
int x = 3;
|
||
|
|
int y = 5;
|
||
|
|
int z = 7;
|
||
|
|
printf("%d %d %d %x %x",x,y,z); //on an Intel cpu the first %x reveals %%ebp and the second reveals the return address.)
|
||
|
|
}
|