#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 6 #Eval: $TITLE$ #Macro: PAGE bb2-6

Correct.

The expression 1==1 is always true, so the while loop never terminates.

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. #: