What is the output of the following code?
void main()
{
char*a;
int*b;
long*c;
a=b=c=0;
a++;
b++;
c++;
printf("%p...%p....%p.",a,b,c);
}


Posted on by