Computer Science, asked by Sahildahiya5783, 1 year ago

What will be the output of the program? #include #include void fun(char *msg, ...); int main() { fun("indiabix", 1, 4, 7, 11, 0); return 0; } void fun(char *msg, ...) { va_list ptr; int num; va_start(ptr, msg); num = va_arg(ptr, int); num = va_arg(ptr, int); printf("%d", num); } indiabix 1 7 11 0 1 4 7?

Answers

Answered by Anonymous
0

freestyle ArtikaI was thinking u someone elseSomeone more important is online after a long time Give example of a flower which consists both stamen and carpels.

Similar questions