long f(long v[5]) { return v[1] + v[3]; } long c() { static long a[] = { 'H', 'e', 'l', 'l', 'o' }; return f(a); }