Latest C Aptitude Question SOLUTION: #include int main() { char str[20]="hello"; char * const p=str; *p='M'; printf("%s\n",str); return 0; }

11 : 40 : 56