You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
148 B

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
}