What will be the output of the following program if the address of variable 'a' is 66553?
#include<stdio.h>
include<conio.h>
int main() {
int a=10;
void *k;
k=&a;
k++;
printf("\n%u", k);
getch();
return 0;
}
Why output of the above code is not 66554?
Why it will generate an error?