prog.c: In function ‘Modifica’:
prog.c:5:2: error: ‘chrstr’ undeclared (first use in this function)
chrstr[0]=chrstr[0]-'a'+'A';
^~~~~~
prog.c:5:2: note: each undeclared identifier is reported only once for each function it appears in
prog.c: In function ‘main’:
prog.c:13:8: error: array size missing in ‘str’
char str[];
^~~
prog.c:15:3: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration]
gets(str);
^~~~