In C, multi-line comments, /* and */, do not nest.
If you annotate a block of code or function using this style of comment:
/*
 * max(): Finds the largest integer in an array and returns it.
 * If the array length is less than 1, the result is undefined.
 * arr: The array of integers to search....