#include #include void main(){ int ch,op=1; float val; start: clrscr(); printf("\n\n\t\t\t\tLength Conversion\n"); printf("\n 1- MM 2- CM 3- Inch 4- Foot 5- Meter 6- Kilo Meter 7-Exit "); do{ printf("\n\n\tEnter Your Choice\n"); gotoxy(27,7); scanf("%d",&ch); printf("\n\tEnter Your Value"); gotoxy(27,9); scanf("%f",&val); gotoxy(6,12); printf("ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»"); gotoxy(6,14); printf("ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ"); gotoxy(6,16); printf("ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ"); gotoxy(6,18); printf("ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ"); gotoxy(6,20); printf("ÇÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĶ"); gotoxy(6,22); printf("ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ"); switch(ch){ case(1): gotoxy(10,10); printf("\n\t\t\t%f Milli Meter",val); printf("\n\n\tCM =\t%f",val/10); printf("\n\n\tM =\t%f",val/1000); pri...