const char *data[] = {
"py"
, "java"
, "cxx"
};

vs

const char *data[] = {
"py",
"java",
"cxx"
};

From DC Wave