Q. What is the output of C program?
Code:int main()
{
printf("%c","HUMPTY"[2]);
}
β
Correct Answer: (B)
M
int main()
{
printf("%c","HUMPTY"[2]);
}
You must be Logged in to update hint/solution