HI
I wrote a simple program to expect some error, but it is printing the
value.
main()
{
extern int i;
int i=10;
printf("%d\n",i );
}
I am getting answer 10. But i think it should not be the case.
Thanks
I wrote a simple program to expect some error, but it is printing the
value.
main()
{
extern int i;
int i=10;
printf("%d\n",i );
}
I am getting answer 10. But i think it should not be the case.
Thanks
Comment