What is the output of the following C Program?


Loading

โœช Choose the correct option.

What is the output of the following C Program?


#include

void main()

{

char *p;

int *q;

long *r;

p=q=r=0;

p++;

q++;

r++;

printf("%p...%p...%p",p,q,r);

}

A. Garbage Value
B. 0001…0002…0004
C. Compilation Error
D. None of these