#include int main () { /* variable declarations */ char message[] = "Hello CSPP51081\n"; printf (message); /* what happens when we put '\0' in the middle of our string */ message[4] = '\0'; /* print new string */ printf (message); printf ("\n"); return 0; }