What is the output of `printf('%d', 3 && 0);`?
Question 1
Q1. What is the output of `printf('%d', 3 && 0);`?
Answer: 0
Explanation: Logical AND operation results in 0 because one operand is 0. NET computer science MCQs often test this core concept.