#include <stdio.h>
void main(){
int i=0;
if(printf(“%”,i)==0) {
printf(” if block executed\n”);
}
By Rose

#include <stdio.h>
void main(){
int i=0;
if(printf(“%”,i)==0) {
printf(” if block executed\n”);
}
else{
printf(“else block executed\n”);
}
}​

About the author
Rose

1 thought on “#include <stdio.h><br />void main(){<br />int i=0;<br />if(printf(“%”,i)==0) {<br />printf(” if block executed\n”);<br />}<b”

  1. Explanation:

    #include <stdio.h>

    void main(){

    int i=0;

    if(printf(“%”,i)==0) {

    printf(” if block executed\n”);

    }

    else{

    printf(“else block executed\n”);

    }

    }

    thank you

    Reply

Leave a Comment