/in/foo.c:3:17: error: 'n' undeclared here (not in a function)
3 | void add(char a[n])
| ^
/in/foo.c: In function 'add':
/in/foo.c:5:23: error: 'n' undeclared (first use in this function)
5 | for (int i = 0; i<n-1; i++)
| ^
/in/foo.c:5:23: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c: In function 'main':
/in/foo.c:21:12: error: 'n' undeclared (first use in this function)
21 | char a[n];
| ^
/in/foo.c:27:9: error: type of formal parameter 1 is incomplete
27 | add(a);
| ^
/in/foo.c:21:10: warning: unused variable 'a' [-Wunused-variable]
21 | char a[n];
| ^