Hi all, I'm little confused. Is it possible to choose number of arguments 'n' for the function "F" in run time? Function 'F' ('n ') If possible,how do we declare the prototype for this Function 'F' ? thanks
Look up "variable length argument lists". "printf" uses a variable number of arguments. Code: printf("hi"); printf("%d %d", 1, 2); The prototype for printf is Code: int printf(const char *format, ...);
Look at OutputDebugString with variable number of arguments where I have applied a wrapper for a function to give a variable number of arguments