#include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("Enter two numbers : "); scanf("%d%d",&a,&b); printf("Greater no is = %d",(a>b)?a:b); getch(); }
© 2019 CODE WITH SHARAD | Privacy Policy
Comments