Is these two programs same? for (i=0;i<5;i++) { if(i%3==0) continue; } i=0; while(i<5) { if(i%3==0) continue; i++; } Answer: Yes No Concept: if you simply used on... Read More
72 Predict the output: int main() { if(-1) printf("hi"); if(1) printf("Bye"); return 0; } Output: hiBye Read More
24 #include main() { int a=0; if(a=0) { printf("hi"); } printf("hello"); } output what'll be the output? Read More