#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 8
#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. #: