#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 6
Guess what this program does?
#include<stdio.h> int main(){ int count ; count = 6 ; while ( count ) { count -= 1 ; printf("%d ", count ) ; } printf("BLAST OFF!\n") ; }#Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: Nothing. #: It counts down from 5 to 0 then screams BLAST OFF! #: It runs forever since a number is always true. #: