replace both the traditional menu bar and toolbars.
 
Hopefully, It's Correct... (ノ◕ヮ◕)ノ
 
        
             
        
        
        
Answer:
ip = enrollment + section;
Explanation:
The variable ip has been declared to be a pointer to int.
int * ip;
The variable enrollment has been declared as an array of 20 elements .
int enrollment[20];
The variable section has been declared as an int.
int section;
In order to make ip point to the element in the array indexed by section, we can use the following statement :
ip = enrollment + section;
This will make ip point to enrollment[section].
 
        
             
        
        
        
Start>hover over "Computer">right-click>Properties>shows system specs
Start>Control Panel>lets you modify network connections, change time and date, update, uninstall programs, add new hardware, etc.
        
             
        
        
        
Answer:
C++ code is given below
Explanation:
#include <iostream>
#include <cctype>
#include <string.h>
#include <cstring>
#include <sstream>
using namespace std;
struct Car {
public:    
char reportingMark[5];    
int carNumber;
string kind;
bool loaded;
string destination;
};
void input(Car *);
void output(Car *);
int main() {
Car *T = new Car;    
input(T);
output(T);    
delete T;    
return 0;
}
void input(Car *T)
{
string str, s;
cout << " Enter the reporting mark as a 5 or less character uppercase string: ";
cin >> str;
for (int i = 0; i < str.length(); i++)
T->reportingMark[i] = toupper(str[i]);
cout << " Enter the car number: ";
cin >> T->carNumber;
cout << " Enter the kind: ";
cin >> T->kind;
cout << " Enter the loaded status as true or false: ";
cin >> s;    
istringstream(s) >> boolalpha >> T->loaded;    
if (T->loaded == true) {
cout << " Enter the destination: ";
cin.ignore();
getline(cin, T->destination);
}
else
T->destination = "NONE";    
}
void output(Car *T)
{
cout << " Reporting Mark: " << T->reportingMark;
cout << " Car Number: " << T->carNumber;    
cout << " Kind: " << T->kind;
cout << " Loaded Status: " << boolalpha << T->loaded;
cout << " Destination: " << T->destination << " ";
}