I have two pointers,
char *str1; int *str2;
If I look at the size of both the pointers let’s assume
str1=4 bytes str2=4 byt
Hint: p[i] is shorthand for *(p + i).
p[i]
*(p + i)