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