Tag Archives: activity

figure1

C Programming Examples – Fibonacci Series Using Loop Statement

Problem: Create a program that displays the Fibonacci sequence of a user input. More about Fibonacci here.

Sample Output: Enter a Number: 7 Fibonacci Series: 1 1 2 3 5 8 13

C Programming Examples – Simple Averaging

Problem: Create a program that will compute the average score of 3 quizzes using the following formula. quiz average is equal to sum of 3 quizzes divided by 3.
Posted in C/C#/C++, Examples, Programming, Tutorials | Tagged , , | Comments Off