See i have a program in c or c++.. this program has many functions like add(), mul(), div(), sub() etc....
now i want to call a function such that in main there should be only one call for that particular funtion that i have to be called... ie in runtime i have to call a particular function...
main()
{
function_call();
}
add()
{
fun body
}
mul()
{
fun body
}
div()
{
fun body
}
sub()
{
fun body
}
Like this i have 4 fun ok.. i have to call one funtion at runtime .. not at compile time... main should have 0nly one calling function name...
how to do it... please help me...