What error does the following code throw?

#include
using namespace std;
int main() {
int a=10, *j;
void *k;
j=k=&a;
j++;
k++;
cout<<j<<k;
return 0;
}

Hello @aryansin08 dont declare the k as void* type:
check this :


if you have any further doubt you can ask here:
Happy Learning!!

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.