Comment on the output of the following C code.<br><pre><code class="c-program">#include &lt;stdio.h&gt;int main(){ char *str = "This" //Line 1 char *ptr = "Program\n"; //Line 2 str = ptr; //Line 3 printf("%s, %s\n", str, ptr); //Line 4}</code></pre>

Correct Answer: Memory holding "this" loses its reference at line 3