- #include <iostream>
- using namespace std;
- int main()
- {
- //defines a constant that cannot be re-assigned
- const string school = "CCBC";
- cout << "Welcome ";
- //skips to the label
- goto myLabel;
- cout << "to ";
- myLabel:
- //the next line would cause an error because school is a constant
- //school = "UMBC";
- cout << school;
- }