Copyright protection lasts the artist’s life and +70 years but if it was made from 1922-1978 it lasts 95 years form the date of publication
Answer:
See explaination for program code
Explanation:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main() {
string name;
int age;
cout << "Enter name of user: ";
getline(cin, name);
cout << "Enter age of user: ";
cin >> age;
ofstream outdata("outdata");
outdata << name << " " << age << endl;
outdata.close();
return 0;
}
Answer:
The function of the tab is used to advance the cursor to the next tab key.