#ifndef F1_H #define F1_H // prints the ascii code void Ascii(void); /* This function finds the maximum of ten numbers */ int I_Max(void); // checks if a digit '5'is inside some long number int Is_5_Inside(long number); // checks if letter or digit was entered and tells the user about it till // the ! is entered void Letter_Or_Digit(void); // using for and while , numbers 1-100 which can be devided by 17 or by 7 // echoing those numbers to the screen void Devide_177(void); // Printing first 20 numbers of fibonacci serie ,iterative way -more // effective than recursive one - you can show it. long Fibonacci20(void); int Find_Max_Denom(void); // Asks user to give any key and waiting for a key void Give_Key(void); // like Is_5_Inside but checks for array of numbers void Check_for_5(); // Asks user fo height and width and prints rectangle with '*' void Draw_Rect(void); //Reverses a long number which it gets from user (keyboard) long int Lrev_Num(void); //min between two integers by means of "if" int min(int a,int b); //min between two floats (overloading by means of ? : operator float min(float a,float b); // finds maximum denominator of 2 numbers // by deviding them by all numbers -1,2,3... //till the half of the smallest between them; int Max_Denom(int a ,int b); #endif