function(int x)1*01263c6cSJonas Devlieghereint function(int x) { 2*01263c6cSJonas Devlieghere if ((x % 2) == 0) 3*01263c6cSJonas Devlieghere return function(x - 1) + x; // breakpoint 1 4*01263c6cSJonas Devlieghere else 5*01263c6cSJonas Devlieghere return x; 6*01263c6cSJonas Devlieghere } 7*01263c6cSJonas Devlieghere main(int argc,char const * argv[])8*01263c6cSJonas Devlieghereint main(int argc, char const *argv[]) { return function(2); } 9