| 10 | void print_any_number_of_integers(int n, ...); |
| 11 | |
| 12 | int main() |
| 13 | { |
| 14 | print_any_number_of_integers(1, 213); |
| 15 | print_any_number_of_integers(2, 234, 2567); |
| 16 | print_any_number_of_integers(3, 487, -12, 0); |
| 17 | } |
| 18 | |
| 19 | void print_any_number_of_integers(int n, ...) |
| 20 | { |
nothing calls this directly
no test coverage detected