function-params.txt 99 B

12345
  1. int f(
  2. int a = 1,
  3. char* b = "2", // Line comment
  4. double c = 3.0 /* Block comment */
  5. );