int rain(AV *a,int n){ // where n is the size of the array int i; for (i = 0; i < n; i++) printf("%d\n",a[i]); } return 5; }