What would be the output of the following program ?
main()
{
const int x = 5;
int *ptrx;
ptrx = &x;
*ptr = 10;
printf ("%d", x);
}
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Be The First To Comment