when compiled i am receiving the above error, what might be the possible cause of this error. I was expecting 65 0 as the output!
int main(){
char c, *cptr;
void v, *vptr;
c = 65; v = 0;
cptr = &c; vptr = &v;
printf(“ % d % d”, *cptr, *vptr);
}
question from:https://stackoverflow.com/questions/66062035/variable-has-incomplete-type-void