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