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
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
Social Sciences,
6 months ago
History,
1 year ago
Political Science,
1 year ago
Math,
1 year ago
Math,
1 year ago