7 lines
170 B
C
7 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.)
|
|
}
|