CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #50

Short-Circuit Side Effect

hardOperators

What does this code print?

📄 Code

1int a = 5, b = 0;
2int c = (a > 0) || (b = 10);
3printf("%d %d", c, b);