

MCQOPTIONS
Saved Bookmarks
1. |
Point out the correct statement will let you access the elements of the array using 'p' in the following program?
|
A. | <pre><code class="cpp">for(i=0; i<3; i++) { for(j=0; j<3; j++) printf("%d", p[i+j]); } </code></pre> |
B. | <pre><code class="cpp">for(i=0; i<3; i++) printf("%d", p[i]); </code></pre> |
C. | <pre><code class="cpp">for(i=0; i<3; i++) { for(j=0; j<3; j++) printf("%d", p[i][j]); } </code></pre> |
D. | <pre><code class="cpp">for(j=0; j<3; j++) printf("%d", p[i][j]); </code></pre> |
Answer» D. <pre><code class="cpp">for(j=0; j<3; j++) printf("%d", p[i][j]); </code></pre> | |