Skip to content

Latest commit

 

History

History

0x04-more_functions_nested_loops

0x04. C - More functions, more nested loops


More Playing with functions and loops in C.


Resources


File Structure

File Description
Is upper A function that checks for uppercase character.
Is digit A function that checks for a digit (0 through 9).
Collaboration is multiplication A function that multiplies two integers.
The numbers speak for themselves A function that prints the numbers, from 0 to 9.
I believe in numbers and signs A function that prints the numbers, from 0 to 9 without 2 and 4.
Numbers are universal language A function that prints 10 times the numbers, from 0 to 14.
A straight line A function that draws a straight line in the terminal.
A diagonal line A function that draws a diagonal line on the terminal.
Square A function that prints a square.
Fizz-Buzz A program that prints the numbers from 1 to 100, followed by a new line. But for multiples of three print Fizz instead of the number and for the multiples of five print Buzz. For numbers which are multiples of both three and five print FizzBuzz.
Triangles A function that prints a triangle.
Prime numbers A program that finds and prints the largest prime factor of the number 612852475143.
Numbers have life A function that prints an integer.

General Requirements

  • All files should end with a new line.
  • No more than 5 functions per file.
  • Not allowed to use the standard library.
  • Allowed to use _putchar.
  • All prototypes should be present in The header file