/********************* * Name: Geoff Towell * Purpose: printf sample and everything returns a value * Wrttten: August 5, 2019 * Modified: Sep 4, 2019 *********************/ #include int main() { int A, B, C; // I hate variables that have initial caps A=24; B=18; C=A+B; printf("C = %d\n", C); int d = (C > A > B); printf("D = %d\n", d); }