f(int a,int,int c)1 int f(int a,int, int c) { 2 return a + c; 3 } 4 main()5 int main() { 6 return f(1,2,3); 7 } 8 9