if i write a statement in C/C++..........
main()
{
int x;
}
is this a declaration or definition?
if this is a declaration then why it display garbage value for x?
main()
{
int x;
}
is this a declaration or definition?
if this is a declaration then why it display garbage value for x?
Comment