FUNCTIONS
DESCRIPTIONS
gcd Calculates the GCD between two numbers.
gcd(15,25);
cres Sort an array in ascending order.
 float tableau[8] = {1.4,6,6.66,0,5.9,77,1000000,4.0};
cres(tableau,8);
descen Sort a table in descending order.
 float tableau[8] = {1.4,6,6.66,0,5.9,77,1000000,4.0};
descen(tableau,8);
e1...e4 Writeall the accented characters of the French alphabet.
printf("%ctudiant",e1());
color1 Sets strings to color.
color1("EXAMPLE","red");
color2 Colors int and float elements.
color2("15,"red");
underline1 Emphasizes strings.
underline1("EXAMPLE");
underline2 Emphasizes int and float elements.
underline2(15);
bold1 Puts strings in bold.
bold1("EXAMPLE");
bold2 Puts int and float elements in bold.
bold2(15);
frame Frames strings.
frame("EXAMPLE","yellow");
repeat Displays a string repeatedly/blinking.
repeat("EXAMPLE",1);
obo Displays a string sequentially.
obo("EXAMPLE",1);
information Additional Descriptions
  • The upper function returns to 1 if a capital letter is detected and to 0 if it is not.
  • The functions that display accented characters are for the letters 'e', 'a', 'u', 'o', 'i' accompanied by indexes as in the example in the table.
  • Indexes :
    1 : acute
    2 : grave
    3 : circumflex
    4 : umlaut
  • The colors supported by the color and frame functions are the : red, orange, yellow, magenta, blue, green, cyan.
  • For color, underline, and bold functions:
    1 : strings
    2 : int and float elements
  • For the frame function, the default white color is available.
  • The time entered as a parameter for the repeat and obo functions is in seconds.

Copyright ©2024. Designed by Ethan Bokamé. All Rights Reserved.