Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program that takes two numbers from user that
prints the smallest number

Answer Posted / vaishnavi

#include<iostream.h>
void main()
{
int a,b;
cout<<"Enter two numbers";
cin>>a>>b;
if(a>b)
cout<<a<<"is greater";
else
cout<<b<<is greater";
}

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of typedef?

1038


What is ostream in c++?

962


What is :: operator in c++?

991


Can we define function inside main in c++?

959


Why main function is special in c++?

1061


What are files in c++?

980


What is pointer with example?

980


How do c++ struct differs from the c++ class?

1125


How delete [] is different from delete?

959


What is the difference between an external iterator and an internal iterator?

1052


Difference between Abstraction and encapsulation in C++?

1074


How can you create a virtual copy constructor?

1036


What do you mean by friend class & friend function in c++?

1014


What are iterators in c++?

964


Write about the access privileges in c++ and also mention about its default access level?

1009