Is it possible to from function call on fly in C programming
language ?
I am faced with an interesting problem in that I need to take function
name and arguments on fly (actually from Database as string ) and form
a function call based on that ?
something like FUN_NAME="fun1" , ARGS ="arg1,arg2,arg 3" , for this
pair function call must be
fun1(arg1,arg2, arg3);
assume that fun1(int,char,c har*) is defined before the call ?
i.e.,
get fun_name,args;
form a call
Regards,
Onkar
language ?
I am faced with an interesting problem in that I need to take function
name and arguments on fly (actually from Database as string ) and form
a function call based on that ?
something like FUN_NAME="fun1" , ARGS ="arg1,arg2,arg 3" , for this
pair function call must be
fun1(arg1,arg2, arg3);
assume that fun1(int,char,c har*) is defined before the call ?
i.e.,
get fun_name,args;
form a call
Regards,
Onkar
Comment