Arkanjo 0.1
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
find_max.c
Go to the documentation of this file.
1{
2 int mx = v[0];
3 for(int i = 1; i < n; i++){
4 if(mx > v[i]){
5 mx = i;
6 }
7 }
8 return mx;
9}
int n
Definition main.c:10
v[0]
Definition main.c:4
return mx
Definition find_max.c:8