RosettaCodeData/Task/Gotchas/C/gotchas-10.c

8 lines
170 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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.)
}