[solved] – Question 88734
Write the output of the following program:
#include<upstream.h>
#include <conio.h>
void main ( )
{
int t=0
int X[ ] ={4,6,7,10,12}
for (int i=1;i <5; i++)
{ X [ i ] = X [ i ] *2 ;
t+=X [ i ];
}
cout <<t;}
Expert Answer
OR

