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

True

This correspondence between integers and logicals is more than skin deep.
#include<stdio.h>

int main(){

  printf("%d plus twice %d equals %d.\n",
          (1>1), (1==1), (2<3)+(3<4) ) ;
}
What does this program print? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Table of Contents #: It prints the truth. #: It prints False plus twice True equals Too-True. #: It prints 0 plus twice 1 equals 2. #: