Suppose a is character array declared as char a[ ] = "have a nice day!" ; and p is a char pointer that contains the base address of the array a, then p += 7 will point to:
a. e
b. n
c. i
d. A blank space
Answers
Answered by
1
Answer:e
Explanation:
Answered by
0
Answer:
p is a char pointer that contains the base address of the array a, then p += 7 will point to 0ption (a) e.
Explanation:
a is character array declared as char a[ ] = "have a nice day!",first pointer allocates to a{0}="h" and then increase the bit by a{1}=a,a{2}=v and so on. so the seventh pointer point outs the letter bit E.
Similar questions