Int calc (char *, char *);
Int calc (const char *, char * const);
Why these two functions is defined as repeated definition;
CodePudding user response:
Personal understanding, char * const, the parameters of the type or is const char * just parameters, so with char * repeat it to avoid ambiguitiesChange
Calc (const char *, const char *)