1. Choose the correct statements regarding inline functions.
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.
4. The compiler identifies a virtual function to be pure
You must be logged in to post a comment.
You must be logged in to post a comment.
a=chg(b) ;
cout << a << b ;
If the function chg is coded as
int chg(int x)
{
x = 10;
return ();
}
then
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.