Skip to content

Latest commit

 

History

History

0x08-recursion

0x08. C - Recursion

Resources:books:

Read or watch:


Learning Objectives:bulb:

What I learned from this project:

  • What is recursion
  • How to implement recursion
  • In what situations you should implement recursion
  • In what situations you shouldn’t implement recursion

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

Author