Discussion :: C-MCQs
-
What is the output of this C code?
void main()
{
int x = 0;
int *ptr = &x;
printf("%p\n", ptr);
ptr++;
printf("%p\n ", ptr);
}
Answer : Option A
Explanation :
None.
Be The First To Comment