const float arr[3] = {1.1, 2.2, 3.3}; float carr[3] = {4.4, 5.5, 6.6}; int main() { float sum = arr[0] + carr[0]; return (int)sum; // 5 }