Q:

Output is #include void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }

0

Output is

#include void main() { int x = 1, y = 0, z = 5; int a = x && y && z++; printf("%d", z); }


  1. Output: 6
  2. Output: 0
  3. Output: 2
  4. Output: 5

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

Output: 5

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Programming Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
The concept of two functions with same name is kno... >>
<< Which of the following data type will throw an err...