Problem Statement
Write a function void countdown(int start) that prints a countdown from the number `start` down to 0.
After 0, it should print "Blastoff!".
Each number and the final string should be on a new line.
DEMO-C-32 โข Programming in C
Write a function void countdown(int start) that prints a countdown from the number `start` down to 0.
After 0, it should print "Blastoff!".
Each number and the final string should be on a new line.
A single non-negative integer.
Numbers from start to 0, followed by "Blastoff!".
Submit runs every public testcase in this browser. Results and code never leave this device.
3
3 2 1 0 Blastoff!
2
2 1 0 Blastoff!
0
0 Blastoff!
C, C++, Java, and Python run locally in a browser VM. No worker or visualizer is used.
/workspace/question