Computer Science, asked by amangpt4652, 3 days ago

Write a c program for smallest no

Answers

Answered by codinggem1
0

Answer:

#include <stdio.h>

#include <conio.h>

int a,b;

main()

{

clrscr();

printf("Enter 2 numbers: ");

scanf("%d %d", &a, &b);

if (a>b)

printf("%d is greater than %d", a, b);

else

printf("%d is greater than %d", b, a);

}

Explanation:

Similar questions