mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-06 23:46:15 +00:00
18 lines
176 B
C
18 lines
176 B
C
#include <stdio.h>
|
|
void bar(int a)
|
|
{
|
|
printf("bar(), &a=%p\n", &a);
|
|
}
|
|
void foo()
|
|
{
|
|
bar(1);
|
|
// printf("foo()\n");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
//printf("main()\n");
|
|
return 0;
|
|
}
|