1 int first[2048] = { 5 }; 2 int second[2048] = { 6 }; main()3 int main() { 4 return first[0] + second[0]; 5 } 6