Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
5
Posts with Downvotes
1
Downvoting Members
5
1 Commented Post
0 Endorsements
~117 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for suganthan901307

[code=c++]#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<<"\nThe 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(); }[/code] OUTPUT: The contents of the array are: 1 -1 0 2 4 -2 3 3 0 4 2 2 5 …

Member Avatar for Ancient Dragon
-5
117