#include <stdio.h> void main() { char num1 = '2'; char num2 = 'N'; int num3 = num1 && num2 || '2'; printf("%d\n", num3); }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.