What will be the output of the following program?
    #include stdio.h
int main()
{
int *ptr, a = 10;
ptr = &a;
*ptr += 1;
printf("%d,%d/n", *ptr, a);
}

Posted on by