Showing posts with label Conditional statements. Show all posts
72

72

Predict the output: int main() { if(-1) printf("hi"); if(1) printf("Bye"); return 0; } Output: hiBye
Read More
24

24

#include main() { int a=0; if(a=0) { printf("hi"); } printf("hello"); } output what'll be the output?
Read More