Easy
What type is the variable returned by the following function?
void guestGala(int numberGuests)
{
for (int i = 0 ; i < numberGuests ; i++)
{
char text [] = "Welcome to the Graduate Gala";
printf("%s",text);
}
}
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!