What is the output of the following problem ?

		
					

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#include
int main()
{
func(1);
return 0;
}
func(int i){
static char *str[] = {"One","Two", "Three", "Four"};
printf("%s
",str[i++]);
return;
}

A. One
B. Two
C. Three
D. wo