/* * truth3.c */ #include int main(void) { int num = 0; while (num==0) { printf("(num=0) is TRUE.\n"); } while (num==3) { printf("(num=3) is TRUE and "); printf("(num=0) is FALSE. Press to quit!\n"); } return 0; }