What will be the output of the following code?
main() { int x = 0, y = 0; if(x > 0) if(y > 0) printf("True"); else printf("False"); }