Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Learn C programming from basic to advance

:: C Programming


Expand Down
6 changes: 3 additions & 3 deletions src/00.language/09.functions/hello_function_recursion.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdio.h>

void recurse(int count)
void recurse(int); //funtion prototype
void recurse(int count) //function defenition
{
if (count >= 10) {
printf("Bingo !\n");
Expand All @@ -12,6 +12,6 @@ void recurse(int count)

int main(void)
{
recurse(1);
recurse(1); //function call or recursive call as it is recursive function
return 0;
}