- Joined
- Sep 10, 2012
- Messages
- 2
- Reaction score
- 0
main()
{
extern int i;
i=20;
printf("%d", sizeof(i));
}
It gives Error ... why ???
and if i remove i=20; statement the answer is 2.
why so ??
{
extern int i;
i=20;
printf("%d", sizeof(i));
}
It gives Error ... why ???
and if i remove i=20; statement the answer is 2.
why so ??