#include<iostream.h>
#include<conio.h>
void main ( )
{
int a,b,c,d,e;
clrscr();
a=20;
cout<<a<<" " ;
b=30;
cout<<b<<" ";
c=40;
cout<<c<<" ";
d=50;
cout<<d<<" ";
e=60;
cout<<e<<" ";
getch();
}
Output:
20 30 40 50 60
By Dinesh Thakur
#include<iostream.h>
#include<conio.h>
void main ( )
{
int a,b,c,d,e;
clrscr();
a=20;
cout<<a<<" " ;
b=30;
cout<<b<<" ";
c=40;
cout<<c<<" ";
d=50;
cout<<d<<" ";
e=60;
cout<<e<<" ";
getch();
}
Output:
20 30 40 50 60
Dinesh Thakur is a Freelance Writer who helps different clients from all over the globe. Dinesh has written over 500+ blogs, 30+ eBooks, and 10000+ Posts for all types of clients.
For any type of query or something that you think is missing, please feel free to Contact us.