What is the output of the following problem ?

			  		

Loading

โœช Choose the correct option.

What is the output of the following problem ?


int main()
{
int const * p=5;
printf("%d",++(*p));
return 0;
}

A. Compiler error
B. 5
C. 6
D. None of these