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

5 4 3 2 1 0 BLAST OFF!

In C, an integer zero is false, any other integer value is true. We will see that NULL is also false, which is useful for running down linked lists.
#include<stdio.h>

int main(){
  int i ;
  i = 1 ;

  if (i) 
    printf("True\n") ;
  else
    printf("False\n") ;

}
What does this program do? #Shuffle: none $PAGE$-A $PAGE$-B Return to Learn C Introduction #: Prints True. #: Prints False. #: