#include <stdio.h>
int main() {
int dizi[]= {7, 13, -6, 4, -1, 5, 8, 9, -2, -4};
int diziTersten[10];
int pozitif=0, negatif=0;
int i=0;
for(i; i<10;i++){
diziTersten[i]=dizi[9-i];
if(dizi[i]<0){
negatif=negatif+1;
}else{
pozitif=pozitif+1;
}
}
printf("Dizi Tersten:{%d, %d, %d, %d, %d, %d, %d, %d, %d, %d}\n",diziTersten[0],diziTersten[1],diziTersten[2],diziTersten[3],diziTersten[4],diziTersten[5],diziTersten[6],diziTersten[7],diziTersten[8],diziTersten[9]);
printf("Pozitif sayilar: %d\n",pozitif);
printf("Negatif sayilar: %d\n",negatif);
return 0;
}