We'll be learning
- how to nest loops within other loops
- how to create functions
- how to declare functions
- how specify function return types and argument type
- how and why to use header files
This program prints _putchar
followed by a new line
print the alphabet in lowercase followed by a new line.
This function prints the alphabet in lowercase 10x, followed by a new line.
This function checks if a character is lowercase
This function checks if a character is an alphabet
This function prints out the sign of a number
+
if the number is greater than 00
if the number is zero-
if the number is less than 0
This function computes the absolute value of an integer
This function prints & returns the last digit of a number
This function prints every minute of the day starting from 00:00
to 23:59
.
This function prints the 9 times table
This function add two numbers and returns the result
This function prints all natural numbers from n
to 98, followed by a new line
This function prints the n
times table starting with 0
if
n
is greater than 15, or less than 0, the function does not print anything
This program computes and prints the sum of all the multiples of 3
or 5
below 1024
(excluded), followed by a new line
This program prints out the first 50 Fibonacci numbers, starting with 1
and 2
, then followed by a new line
- The numbers are seperated by comma, followed by a space
This program goes through all numbers in a fibonacci sequence that do not exceed 4,000,000, then:
- find an prints out the sum of the even-valued terms
- prints a new line
This program prints out the first 98 Fibonacci numbers, starting with 1
and 2
, then followed by a new line
- The numbers are seperated by comma, followed by a space