Created
May 12, 2024 18:02
-
-
Save coproduto/36da0f682e5df1b31be1dd101f39d4e4 to your computer and use it in GitHub Desktop.
Revisions
-
coproduto created this gist
May 12, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ int do_something(int arg) { if (arg > 0) { printf("%d", arg); do_something(arg - 1); } else { /*** if arg <= 0 ***/ return 0; } /*** END if arg > 0 ***/ } /*** END do_something ***/