Given the code: (numbers are used only for referencing the lines.)
```1 char title[30];
2 cout << "enter the employee’s title: ";
3 cin >> title;
4 cout << "The title is: "<< title;```
If the user entered the title: Marketing Director
What will be the output from line 4?
A. enter the employee’s title:
B. The title is: Marketing Director
C. The title is: Marketing
D. Marketing
C
Computer Science & Information Technology