Computer Science, asked by Anonymous, 22 days ago

Create to find the largest number with 3 numbers by passing an argument in macros.​

Answers

Answered by Anonymous
0

Answer:

WAP to find largest of 3 numbers using macros with Arguments and...

int i=20, j=95, k=10,max;

clrscr();

big=LARGEST(x,y,z);

printf(“\nLargest of %8.2f %8.2f %8.2f is %8.2f”,x,y,z,big);

max=LARGEST(i,j,k);

printf(“\nLargest of %8d %8d %8d is %8d”,i,j,k,max);

getch();

}

Similar questions