What that declaration means in C ?
void help_me (char *, char *);
I’m newbie, but I know about pointers. Seems like this is something different ?
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.
This declaration says that
help_meis a function taking two pointers tochar(for example, two strings).For a function prototype declaration the variable names are optional:
void help_me (char *, char *);andvoid help_me (char * foo, char * bar);are equivalent.