Find the output of the following program.
Attachments:
Answers
Answered by
0
Answer:
not able to understand the question
Answered by
0
Answer:
1. #include<iostream.h>
void main()
int a[5]= {11,12,13,14,15};
for(int i=0;i<5;i++)
{
cout << "The value of " << i << "is" << a[i];
}
Similar questions