int fun()What is the output of the program available in the LHS?{static int num=16;return num--;}int main(){for(fun();fun();fun())printed("%d",fun());return 0;}
Find the output of the following?if(1 + 1 + 1 + 1 + 1 == 5){System.out.print(TRUE);}else{System.out.print(FALSE);}
#include stdio.hvoid solve() {bool ok = false;printf(ok ? "NO" : "YES");}int main() {solve();return 0;}