#include <stdio.h> int main (void) { char *hello = "Hello!"; hello[1] = 'a'; printf ("%s\n", hello); return 0; }