so I have:
char inBuf[80]
and then there’s another line
inBuf+9
what does it mean when I add that +9 to the array’s name?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is same as referencing element number 9(0 based).
An equivalent notation would be:
If you want to get the value, you could use
*(inBuf+9)