Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
samhithavootkoor authored Mar 20, 2019
1 parent b7d33ee commit ed563ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lab/exp8/simulation/CallByValuePointers/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div id = 'codeContentBP3' >&emsp;&emsp;int A = 10;</div>
<div id = 'codeContentBP4' >&emsp;&emsp;printf("Value of A is %d\n",A);</div>
<div id = 'codeContentBP5' >&emsp;&emsp;printf("Address of A is %d\n",&A);</div>
<div id = 'codeContentBP6' >&emsp;&emsp;int *P</div>
<div id = 'codeContentBP6' >&emsp;&emsp;int *P;</div>
<div id = 'codeContentBP7' >&emsp;&emsp;P = &A;</div>
<div id = 'codeContentBP8' >&emsp;&emsp;printf("Value of P is %d\n",P);</div>
<div id = 'codeContentBP9' >&emsp;&emsp;printf("Address of P is %d\n",&P);</div>
Expand Down Expand Up @@ -110,4 +110,4 @@
</div><!-- end of codeExplanationBody -->
</div><!-- end of codeExplanationDivision -->
</body>
</html>
</html>

0 comments on commit ed563ed

Please sign in to comment.