InterviewSolution
Saved Bookmarks
| 1. |
What is the conversion type for reinterpret casting?(a) Pointer to Variable(b) Variable to Variable(c) Pointer to Pointer(d) Variable to PointerThe question was asked in an interview.My doubt is from Type Conversions in division Arduino Programming of Arduino |
|
Answer» CORRECT choice is (c) POINTER to Pointer For explanation: REINTERPRET CASTING is used to convert a pointer of any data type to another pointer of any other data type. Additionally, this does not MATCH the datatype of the value and the pointer. |
|