#include<conio.h>
#include<iostream.h>
void main()
{
clrscr();
int balls=10;
cout<<balls<<endl;
cout<<balls++<<endl;
cout<<++balls<<endl;
cout<<balls--<<endl;
cout<<--balls<<endl;
cout<<”By Muzafar Hussain Sahto”;
getch();
}







No comments:
Post a Comment