Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 715 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 715 Bytes

Fizz_Buzz_Test_C

The "Fizz-Buzz test" is an interview question designed to help filter out the 99.5% of programming job candidates who can't seem to program their way out of a wet paper bag. The text of the programming assignment is as follows:

"Write a program that prints the numbers from 1 to 100. 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”."

Source: "Using FizzBuzz to Find Developers who Grok Coding" http://tickletux.wordpress.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/ . It would be more interesting if the numbers were -50 to +50.