Computer Science, asked by nani8572, 1 year ago

Write a macro that obtains the largest of three numbers in c++

Answers

Answered by Aishwarya98
9

#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);

}

Similar questions