A one page paper describing the C program written below. State the requirements for the program and discuss the logical process the program uses to meet those requirements.
Â
#include "stdio.h"
int main(void)
{
//initialize array
int arr[100];
  //initialize variables
  int i=0, j=0, n=0;
  //infinite loop which will stop when user enters -1
  while(n != -1)
{
 Â
printf("Enter percentage grade(0-100). Enter -1 to stop: ");
//read grade
  scanf("%d",&n);
  //if user entered grade is not -1
if(n != -1)
{
//save it to array
arr[i++] = n;
 Â
}
//if user entered -1, then exit this loop
else
{
break;
}Â Â
 Â
}
 Â
 Â
printf("nnThe grades are: n");
//loop which will iterate till no:of user entered grades
for(j=0; j<i; j++)
{
  //print the grade
  printf("%d ",arr[j]);
}
Answers
Status NEW
Posted 05 May 2017 07:05 AM
My Price 8.00
-----------
Not Rated(0)