Skip to content

Latest commit

 

History

History

0x07-recursion

0x07. C - Recursion

Description

What you should learn from this project:

  • What is recursion, and how to use it

  • Write a function that prints a string, followed by a new line.
  • Write a function that prints a string in reverse.
  • Write a function that returns the length of a string.
  • Write a function that returns the factorial of a given number.
  • Write a function that returns the value of x raised to the power of y.
  • Write a function that returns the natural square root of a number.
  • Write a function that returns 1 if the input integer is a prime number, otherwise return 0.
  • Write a function that returns 1 if a string is a palindrome and 0 if not.

Author