23 lines
436 B
C
23 lines
436 B
C
#include <stdio.h>
|
|
|
|
// This example is meant to recurse infinitely.
|
|
// The extra struct is just to make the frame dump
|
|
// more complicated.
|
|
|
|
struct Foo {
|
|
int a;
|
|
int b;
|
|
char *c;
|
|
};
|
|
|
|
int
|
|
forgot_termination(int input, struct Foo my_foo) {
|
|
return forgot_termination(++input, my_foo);
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
struct Foo myFoo = {100, 300, "A string you will print a lot"}; // Set a breakpoint here
|
|
return forgot_termination(1, myFoo);
|
|
}
|