Computer Science, asked by gunjans900, 1 year ago

How to assign a function's value to a variable?

Answers

Answered by shyamvenkat007
1
Return the value of function to the variable.
For eg:-
returndatatype BBB()
{
    .
    .
    .
    return exam;
}
x=BBB();
Similar questions