Q: 12
What will be the output of the program?
#include
#include
using namespace std;
int fun(int);
int main()
{
float k=3;
k = fun(k);
cout<<k;
return 0;
}
int fun(int i)
{
i++;
return i;
}
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.