too many arg

#include <stdio.h>

// Function prototype with too many arguments
int calculateSum(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j);

int main() {
    // Function call with too many arguments
    int result = calculateSum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);

    // Display the result
    printf("Sum: %d\n", result);

    return 0;
}

// Function definition with too many arguments
int calculateSum(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) {
    // Calculate the sum of the arguments
    int sum = a + b + c + d + e + f + g + h + i + j;

    // Return the result
    return sum;
}