// try out
//Program - 5.4
# include <iostream.h>
# include <conio.h>
void main ( )
{
int x[5] = {1,2,3,4,5}, y [5] = {5,4,3,2,1},
result [5] = { 0,0,0,0,0 };
int i= 0;
while (i++ < 5)
result = x - y ;
clrscr ( );
cout << “\n The contents of the array are: \n”;
i= 0 ;
do
{
cout << ‘\t’ << x
<< ‘\t’ << y
<< ‘\t’ << result <<‘\n’;
i++;
} while (i<5);
getch ( );
}
What is the output of the below program?
I want walk through of this program
// try out
//Program - 5.4
# include <iostream.h>
# include <conio.h>
void main ( )
{
int x[5] = {1,2,3,4,5}, y [5] = {5,4,3,2,1},
result [5] = { 0,0,0,0,0 };
int i= 0;
while (i++ < 5)
result [i] = x [i] - y [i];
clrscr ( );
cout << “\n The contents of the array are: \n”;
i= 0 ;
do
{
cout << ‘\t’ << x [i]
<< ‘\t’ << y [i]
<< ‘\t’ << result [i]<<‘\n’;
i++;
} while (i<5);
getch ( );
}
What is the output of the below program?
I want walk through of this program