*Some Important Campus Oriented Cases About "if" Statement.
Some Important Campus Oriented Cases About "if" Statement. int x=10 , y=5 , z=7; 1. if(x>=y) printf("Hello"); *O/P Hello 2. if (y>=z) printf("Hello"); * NO O/P 3. if(z==25) printf("Hello"); *NO O/P 4. if(z=25) printf("Hello"); *Will Assign In 'Z' Is Non Zero(T) O/P Hello 5. if(15) printf("Hello"); *Will Assign In '15' Is Non Zero(T) O/P Hello 6. if(0) printf("Hello"); *Will Assign In '0' Is Zero(F) O/P NO 7. if(z=0) printf("Hello"); *Will Assign In '...