0
a question about c
int max,min,i; int max =a[0];min=a[0]; I donāt know where the mistake is.
2 Answers
+ 4
Redeclaration is the error.
Try it
int max,min,i;
max =a[0]. [ā don't declare data type again ā]
+ 2
a is not defined.
You don't need int before max at the second line since you already declare it.