Advertisements
Advertisements
Question
Some of the code given below contains errors. Identify the error and correct it. Write the output of the correct/corrected code.
int CQ[] = {10, 20, 30};
CQ[0]++; CQ[1]+; CQ[3]++;
for(int j = 0; j <3; j++)
System.out.print (""+ CQ[j]);
Code Writing
Advertisements
Solution
int CQ[] = {10, 20, 30};
CQ[0]++;
CQ[1]++;
CQ[2]++;
for(int j = 0; j < 3; j++)
{
System.out.print(CQ[j] + " ");
}
shaalaa.com
Is there an error in this question or solution?
Chapter 7: Arrays - One Dimension - Exercises [Page 174]
