Pointer mcq doubt

Which part of the code will possess problem during compilation and why?
{ int a = 10 , *j ; void *k ; j=k=&a ; j++ ;
k++ ; cout<<j<<k ; return 0; }

j=k=&a line will be problematic because you cannot convert void* to int* (j=k).

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.