main() { int x=10,*p,*q; p=&x; q=p+6; cout<<"Contents of q is"<<*q; } my question is y the answer is 0 as the value must be an address.