Write a program in C to find the youngest person
#include<stdio.h>#include<math.h>int main(){ int r,s,a,y; printf(“n Enter age of Ganesh, Prince, Kausal”); scanf(“%d %d %d”,&r,&s,&a); if(r<s) { if(r<a) y=r; else y=a; } else { if(s<a) y=s; else y=a; } printf(“youngest is %d”,y); return 0; }