โช Choose the correct option.
What will be the output of the following program?
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;
}