// E008 — yanlış argüman sayısı int add(int a, int b) { return a + b; } int main() { int x = add(1, 2, 3); return 0; }