πŸ“Š C Programming
Q. Output is:
Code:
#include <stdio.h>

void main() {     
   int x = 1, y = 0, z = 5;     
   int a = x && y && z++;     
   printf(“%d”, a);
 }
  • (A) 1
  • (B) 0
  • (C) 5
  • (D) 6
πŸ’¬ Discuss
βœ… Correct Answer: (B) 0

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
184
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
80%
Success Rate