/***************************************************************************** * condition.c * Matthew Chartier * CS 50/CSCI E-52 * Fall 2010 * * In which we explore boolean conditions. *****************************************************************************/ #include #include int main(void) { bool oRly = true; if(oRly) printf("YA RLY\n"); else printf("NO WAI\n"); }