I have 2 arrays
Code:
Int Tab[5] = {23,47,10,7,3}
Char *S[8] = {"SOMETEXT"}
The array start adresses are
Tab == 0x200
S==0x800
What would be the value of tab+3 and s+3?
Its from a book but it doesnt really explain well.