shanki himanshu 27 Light Poster

yes...i agree with narue...

check this

#include <stdio.h>
 
int main()
{
    int a;
 
    a = 1+1;
 
    
    if (a!=2) {
printf("abcde");    
    goto error;
    }
    
 
error:
    printf("error is here\n");
    return 0;
}

first printf statement will never execute

shanki himanshu 27 Light Poster

after the execution of statement "if(a!=2)" condition is false, then the control will move to "error:" irrespective of whether it is true or not.