// This program demonstrates the error from re-assigning a value to // a constant const char initial = 'A'; int main () { initial = 'C'; }