#include<string .h>
#include<conio. h>
#include<stdio. h>
char*getName(in t num)
{
char word[25];
switch (num)
{
case 1:strcpy(word," one");break;
case 2:strcpy(word," two");break;
case 3:strcpy(word," three");break;
case 4:strcpy(word," four");break;
case 5:strcpy(word," five");break;
case 6:strcpy(word," six");break;...