What is the output for the following C code??
#include stdio.h  
int main()
{
int *ptr, a = 19;
ptr = &a;
*ptr += 1;
printf("%d,%d\n", *ptr, a);
}


Posted on by