×

Loading...

what's the value of K? why?

long & inc (long &i)
{
i = i + 1;
return i;
}

main ()
{
long j = 0;
int k = 0;

inc (j);
inc (k);
}

what's the value of K? why?
Report

Replies, comments and Discussions: