int arr1[255] = {0,};

VS

int arr2[255];
for(int i =0; i<255; i++)
        arr2[i]=0;


어느게 더 성능이 좋은가요