✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of the following program?#include <stdio.h>#include <stdarg.h>void print_numbers(int count, ...) { va_list args; va_start(args, count); for (int i = 0; i < count; i++) { printf("%d ", va_arg(args, int)); } va_end(args);}int main() { print_numbers(3, 10, 20, 30); return 0;}