Use of cout & cin manipulator in c++
Write a C++ program that will print output in the following form. Make sure your output looks exactly as shown here (including spacing, line breaks, punctuation, and the title and author). Use cout and cin objects and endl manipulator. ****************************** * Programmimg Assignment 1 * * Computer Programmimg I * * Author : ??? * * Due Date: Thursday, Dec. 20 * ****************************** PROGRAM CODE : #include<iostream> using namespace std; int main() {cout<<"\n ******************************"<<endl; cout<<" * Programmimg Assignment 1 *"<<endl; cout<<" * Computer Programmimg I *"<<endl; cout<<" * Author : ??? *"<<endl; cout<<" * Due Date: Thursday, Dec.20 *"<<endl; cout<<" ******************************";