Sail E0 Webinar
Question
What substitution should be made to //-Ref such that ptr1 points to variable C?
int main()
{
int a = 1, b = 2, c = 3;
int *ptr1 = &a;
int **sptr = &ptr1;
//-Ref
}
Options:
A .  *sptr = &c;
B .  **sptr = &c;
C .  *ptr1 = &c;
D .  None of the mentioned.
Answer: Option A


None.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers