Skip to content

Latest commit

 

History

History

0x04-more_functions_nested_loops

0x04. C - More functions, more nested loops

Resources:books:

Read or watch:


Learning Objectives:bulb:

What I learned from this project:

  • What are nested loops and how to use them
  • What is a function and how do you use functions
  • What is the difference between a declaration and a definition of a function
  • What is a prototype
  • Scope of variables
  • What are the gcc flags -Wall -Werror -pedantic -Wextra
  • What are header files and how to to use them with #include

  • A function that checks for uppercase character.
  • A function that checks for a digit (0 through 9).
  • A function that multiplies two integers.
  • A function that prints the numbers, from 0 to 9, followed by a new line.
  • A function that prints the numbers, from 0 to 9, followed by a new line.
  • A function that prints 10 times the numbers, from 0 to 14, followed by a new line.
  • A function that draws a straight line in the terminal.
  • A function that draws a diagonal line on the terminal.
  • A function that prints a square, followed by a new line.
  • 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.
  • A function that prints a triangle, followed by a new line.
  • A function that prints an integer.

Author