How to assign a function's value to a variable?
Answers
Answered by
1
Return the value of function to the variable.
For eg:-
returndatatype BBB()
{
.
.
.
return exam;
}
x=BBB();
For eg:-
returndatatype BBB()
{
.
.
.
return exam;
}
x=BBB();
Similar questions