Question from the Language C - Fundamentals test

What type is the variable returned by the following function?

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);
    }
}
Author: KahinaStatus: Published(Update)Question passed 178 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!