Computer Science, asked by khiradhamid, 2 months ago


Write a program that reads two numbers and prints the larger.
# include <stdio.h>
#include <conio.h>
void main( void)
{
clrscr();
int a,b ;
printf("\n Enter First Number :");
scanf("%d", & a);
printf("\ n Enter Second Number :");
scanf("%d", & b);
if (a >b)
printf("\n%d is Larger", a);
else
printf("\n %d is Larger", b);
getch();​

Answers

Answered by harsh32559
3

Answer:

dragon box pc sod all

Explanation:

Thanks for

Similar questions