+ 1
If the purpose of the function is to create a string and assign the string to a variable, would the function be declared as string functionName () ?
1 Resposta
+ 1
The function would probably be declared as
void functionName() , because the function would be declared with void regardless of the parameter being string or int or float.