#include <stdio.h> void main() { int num1 = 2, num2 = 0, num3 = 6; int Res = num1 && num2 && num3++; printf("%d", num3); }
6
Previous Question Next Question
Your comments will be displayed only after manual approval.