Advertisements
Advertisements
प्रश्न
Some of the code given below contains errors. Identify the error and correct it. Write the output of the correct/corrected code.
int DL[ ] = new int [5];
int n = 5;
for(int j = 0; j<=n; j++)
System.out.print(" " + DL[j]);कोड लेखन
Advertisements
उत्तर
int DL[] = new int[5];
int n = 5;
for (int j = 0; j < n;j++)
{
System.out.print(" " + DL[j]);
}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 7: Arrays - One Dimension - Exercises [पृष्ठ १७६]
