Predict the output
#include stdio.h
int main()
{
int *ptr, q;
q = 10;
ptr = &q;
printf(“%d”, *ptr);
return 0;
}

Posted on by