Skip to content

Commit 983ac7e

Browse files
Update Largest-array-recursion.c
Formatted the code and added comments for better readability
1 parent c68c9c0 commit 983ac7e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Recursion/Largest-array-recursion.c

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
#include <stdio.h>
2-
3-
/*
1+
// This program finds the largest number in the array using recursion
42

5-
This program finds the largest number in the array using recursion
6-
7-
*/
3+
// This program finds the largest number in the array using recursion
4+
#include <stdio.h>
85

96
// Declaring variable to store array
107
int large(int[]);

0 commit comments

Comments
 (0)