#include<stdio.h>
void ff(const char *format,...)
{
printf("hr");
}
int main()
{
ff("d","c");
}
I want to know what is the meaning of const char *format,... in my declaration of ff function. Moreover, ff function can be called by passing 1 argument, 2 arguments and n arguments. How this function call is working?