โช Choose the correct option.
What is the output of the following problem ?
int main()
{
int const * p=5;
printf("%d",++(*p));
return 0;
}
int main()
{
int const * p=5;
printf("%d",++(*p));
return 0;
}
int main()
{
int const * p=5;
printf("%d",++(*p));
return 0;
}