Salve,
Sto studiando il c per un esame..
Qualcuno mi potrebbe spiegare questa funzione per favore?
void funz( int *V, int n)
{
int i, t;
for ( i=1; i<n; i+=2 )
{
t = *(V+i);
*(V+i) = i*(*(V+i-1));
*(V+i-1) = t;
}
}
con n=5 e v=(10,20,30,40,50)
Grazie mille a tutti