What will be the output of the following C code?
#include
void main()
{
int x = 4;
int *p = &x;
int *k = p++;
int r = p - k;
printf("%d", r);
}
Answer: C
No answer description available for this question.