RAM is located in The central processing unit (CPU), also called a processor, is located inside the computer case on the motherboard. It is sometimes called the brain of the computer, and its job is to carry out commands.
‘Rather’ is always followed by ‘Than’. Thus, the phrase ‘would rather have’ is grammatically correct. The correct formation would be, ‘I would rather have a noble enemy than a mean friend’.
s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea.Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i].