Tagged Questions

5
votes
8answers
176 views

Not able to figure out the logical error in C program

A program that prints its input one word per line. int main() { int c; while ((c=getchar()) != EOF) { if (c== ' ' || c== '\n' ||c == '\t') putchar('\n'); ...
3
votes
2answers
523 views

Equivalence of boolean expressions

I have a problem that consist in comparing boolean expressions ( OR is +, AND is * ). To be more precise here is an example: I have the following expression: "A+B+C" and I want to compare it with ...
3
votes
6answers
306 views

Is “boolean short circuiting” dictated by standard or just mostly used as optimization? [closed]

EDIT: Found duplicate once I learned the term for this behaviour. Close as duplicate please. Consider this Class* p = NULL; if( p != NULL && p->Method() == OK ){ // stuff } On all ...