[Solved] C. for loop with chars
This char s[]=”TvNnFs”,*p; where s is an array of characters and p is character pointer, is looks like below s[0] s[1] s[2] s[3] s[4] s[5] s[6] —————————————— | T | v | N | n | F | s | \0 | —————————————— s 0x100 0x101 0x102 0x103 0x104 0x105 0x106.. (assume 0x100 is base … Read more