int n = 4; int a[] = {5, 4, 3, 2}; int one[1] = {0, 2}; int two[2] = {9, 8}; int main(){ // Should return 5 + 8 = 13 (0xd) return *a + two[1]; }