What will be output of the following “c” code?
Practice Const – What will be output of the following “c” code?
#include
void main()
{
int const *p=5;
printf("%d", ++(p));
}
Practice Const – What will be output of the following “c” code?
#include
void main()
{
int const *p=5;
printf("%d", ++(p));
}

Practice Const – What will be output of the following “c” code?
#include
void main()
{
int const *p=5;
printf("%d", ++(p));
}