RosettaCodeData/Task/Gotchas/C/gotchas-10.c
2023-07-01 13:44:08 -04:00

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.)
}