| 4 | void print_any_number_of_integers(int n, ...); |
| 5 | |
| 6 | int main() |
| 7 | { |
| 8 | print_any_number_of_integers(1, 213); |
| 9 | print_any_number_of_integers(2, 234, 2567); |
| 10 | print_any_number_of_integers(3, 487, -12, 0); |
| 11 | } |
| 12 | |
| 13 | void print_any_number_of_integers(int n, ...) |
| 14 | { |
nothing calls this directly
no test coverage detected