observe the both snippets
*
main()
{
printf("%d",main);
}
*
main()
{
printf("%d",a);
}
have you observed..... The first snippet does not show any errors while second
one shows an error as "unknown symbol a" ..., why please explain
