i = 12 int *p = &I; print ("%d %d", p/p,*p**p) What is the output? A. 1144 B. 144144 C. O/p Error D. Junk


C


Showing Answers 1 - 4 of 4 Answers

Error.Since We are allowed to do multiplication and division of two pointers.
We can only do
1)add integer to pointer
2)subtract integer from pointer
3)subtract two poiunters.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions