mirror of
https://github.com/ioacademy-jikim/debugging
synced 2026-08-11 16:32:58 +00:00
first commit
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user