I saw this format used for comma-separated lists in some C ++ code (although this can apply to any language):
void function( int a
, int b
, int c
)
I was wondering why someone would use this in a more common format, for example:
void function (int a,
int b,
int c
)
source
share