Predict the Output: int a = 5;if (a == 5 || a == 10 && a ==…
Predict the Output: int a = 5;if (a == 5 || a == 10 && a == 15) printf(“True”);else printf(“False”); Explain what is printed and why? Consider the code is fully formed, i.e., no excuses like missing main(), missing stdio.h, etc.