#include #include #include "f1.h" void main(void) { clrscr(); cout<<"This function will find the maximum of 10 int numbers you give!\n"; I_Max(); cout<<"\nThis function will talk about letters and digits \n"; Letter_Or_Digit(); cout<<"\nThis function will give you numbers in range 1 - 100 which \n" << "can be devided by 7 and 17 \n"; Give_Key(); getch(); Devide_177(); Give_Key(); getch(); cout<<"\nNext function will draw a rectangle of * in a size you" <<" \n specify\n"; Draw_Rect(); Give_Key(); getch(); Lrev_Num(); Give_Key(); getch(); Check_for_5(); Give_Key(); getch(); Fibonacci20(); Give_Key(); getch(); Ascii(); Give_Key(); getch(); Find_Max_Denom(); }