What will output when you compile and run the following code?#include &lt;stdio.h&gt;<br />struct student<br />{ int roll;<br />int cgpa;<br />int sgpa[8]; }; void main()<br />{ struct student s = { 12,8,7,2,5,9 };<br />int *ptr;<br />ptr = (int *)&amp;s;<br />clrscr();<br />printf( "%d", *(ptr+3) );<br />getch(); }

Correct Answer: 2