R
rahul8143
hello,
i want to know what is the difference between following 2 snippets
1)
{
int *p;
int *q;
p=q;
...
...
}
2)
{
int *q;
int *p=q;
...
...
}
regards,
rahul
i want to know what is the difference between following 2 snippets
1)
{
int *p;
int *q;
p=q;
...
...
}
2)
{
int *q;
int *p=q;
...
...
}
regards,
rahul