Write the program that reads two numbers and prints the larger using conditional operator
Answers
Answered by
0
Answer:
# include <studio.h>
# include <conio.h>
void main ()
{
int : a,b ;
printf ("\n enter two numbers:");
scanf ( "% d % d ;&a ,&b );
if (a>b)
}
Similar questions