C Programing !!! Solution:- #include<stdio.h> #include<conio.h> void main(){ int akshay,bhavik,dhansree; clrscr(); printf("Enter ages of Akshay,Bhavik,Dhanshree"); scanf("%d %d %d",&akshay,&bhavik,&dhanshree); if(akshay<bhavik) { if(akshay<dhanshree) printf("Akshay is Younger"); else printf("Dhanshree is Younger"); } else { if(bhavik<dhanshree) printf("Bhavik is Younger"); else printf("Dhanshree is Younger"); } getch(); }
Posts
Showing posts from February, 2019