12345678910



Question 1: What will be the output of the program ?

#include<stdio.h>

int main()
{
char str[20] = "Hello";
char *const p=str;
*p=´M´;
printf("%s ", str);
return 0;
}

1. Mello
2. Hello
3. HMello
4. MHello