Find us On Facebook

Thursday, April 7, 2011

Write a macro that obtains the largest of three numbers.

#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
int largest(int,int,int);
cout<<"Enter 3 Integer Numbers\n";
int a,b,c;
cin>>a>>b>>c;
int result;
result=largest(a,b,c);
cout<<"\n\nLargest Value of Inputed is "<<result;
getch();
}

inline largest(int a,int b,int c)
{
int z;
z=(a>b)?((a>c)?a:c):((b>c)?b:c);
return(z);
}

1 comments:

Watch Live Cricket said...

Thanks for sharing useful information.

Post a Comment

Programms

C,C++,VB, PL/SQL EBOOK SEARCH ENGINE