Discussion :: Functions
-
What will be the output of the program?
#include
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment
What will be the output of the program?
#include
int fun(int);
int main()
{
float k=3;
fun(k=fun(fun(k)));
printf("%f\n", k);
return 0;
}
int fun(int i)
{
i++;
return i;
}
Answer : Option A
Explanation :
No answer description available for this question.
Be The First To Comment