Answers for "how to make a function return a string c"

1

how to make a function return a string c

const char* myName() {
  char *name = "Flavio";
  return name;
}
Posted by: Guest on May-29-2021

Code answers related to "how to make a function return a string c"

Browse Popular Code Answers by Language