If you are a boy you can wear a suit or a dress shirt, dress pants with dress shoes
if you're a girl you can wear a business casual dress or a pan suit orrrr you can wear a skirt with heels and a blouse I guess
<span>C) Always better to give your information and end on time.</span>
Answer:
McAfee
Explanation:
An antivirus is a standalone software that protects other software. On the other hand, a Firewall is capable of preserving both software and hardware on the network.
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].