We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ae40bd commit f47d1a3Copy full SHA for f47d1a3
0x10-variadic_functions/0-sum_them_all.c
@@ -13,7 +13,7 @@ int sum_them_all(const unsigned int n, ...)
13
va_list ptr;
14
15
va_start(ptr, n);
16
-
+
17
for (index = 0; index < n; index++)
18
result += va_arg(ptr, int);
19
0 commit comments