As we know printf()
function, it can hold characters and if needed could have additional arguments. Ex. printf("Programmer");
printf("Programmer %d",14);
How could I add additional arguments in a prototype function?
Is it something like some_func(char *str, ...)
?