What is output of code? #include #include void main() { int i; i = 10; if(i == 20 || 30) printf("True"); else printf("False"); getch(); }15/25 What is output of code? #include #include void main() { int i; i = 10; if(i == 20 || 30) printf("True"); else printf("False"); getch(); }TrueFalseComplier errorGiải thíchChọn A.