Here is my minimal example:
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
void print_strings_and_lengths(int count, ...)
{
va_list ap;
/* Print strings */
va_start(ap, count);
for (int i = 0; i < count; i++) {
char *s = va_arg(ap, char *);
printf("%d - %s\n", i, s);
}
/* Print string lengths */
va_start(ap, count); /* Is it okay to call va_start() again without calling va_end()? */
for (int i = 0; i < count; i++) {
char *s = va_arg(ap, char *);
printf("%d - %zu\n", i, strlen(s));
}
va_end(ap);
}
int main()
{
print_strings_and_lengths(3, "apple", "ball", "cat");
return 0;
}
This code is calling va_start() twice on the same list of variable arguments. The va_end() function is not called between the two calls. Is this code well defined or does it invoke undefined behavior?
va_endbefore the secondva_start?va_end()before the secondva_start().