Answer:
int grades[5] = { 100, 90, 80, 78, 98 };
for(int i=0;i<5; i++)
{
cout << grades[i];
}
Answer:
Like a load of batteries
Explanation:
" I have a load of crayons", "I found a load of tires". Hope this helps
The part of this process that could the museum automate easily is defining and assigning categories by subject.
<h3>
What is Cloud backup?</h3>
Cloud backup is known to be a kind of service where data and applications on a business's servers are known to be saved up and kept on a remote server.
Note that a lot of Businesses usually back up to their data to cloud so as to keep files and data in space and available when they need it most especially in the times of a system failure, outage, etc.
Learn more about museum from
brainly.com/question/95815
Answer:
The program to this question can be describes as follows:
Program:
#include <stdio.h> //defining header file
int main() //defining main method
{
int n,i,x=0; //defining integer variable
printf("Enter a number: "); //print message
scanf("%d",&n); //input value from the user
printf("%d\n",n); //print input value
for(i=1;i<n;i++) //loop to count reverse number
{
x=n-i; //calculate value
printf("%d\n",x); //print value
}
return 0;
}
Output:
Enter a number: 3
3
2
1
Explanation:
- In the above program, three integer variable "n,i and x" is declared, in which variable n we take input from the user end and the variable i and x is used in the loop to calculate the value in the reverse order.
- In the next step, a loop is declared, in which the variable x calculates the value in reverse order and uses a print method to print its value.