Computer Science   What statement is true about the following C Program? #include #include typedef struct {    int homeScore;    int awayScore;    char gameLocation; } SOCCER; main() {    SOCCER notFun[100] = { 1, 0, 'A' };    int count = 50, i = 51, total = 0;    count++;    for (i = 0; i < count - 48; i++)        notFun[i].homeScore = i + 1;    notFun[i].awayScore = i + 1;    for (i = 0; i < 100; i++) {        total += notFun[i].homeScore + notFun[i].awayScore;    }    printf("Total Score: %i. \n", total);    system("pause"); } A. SOCCER is an array B. SOCCER is an array of structs C. SOCCER is a data type D. SOCCER is not an array or a data type

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.2: While Loops
Problem 4E: (Conversion) Write a C++ program that converts gallons to liters. The program should display gallons...
icon
Related questions
Question

Computer Science

 

What statement is true about the following C Program?

#include<stdio.h>
#include<stdlib.h>

typedef struct {
   int homeScore;
   int awayScore;
   char gameLocation;
} SOCCER;

main() {
   SOCCER notFun[100] = { 1, 0, 'A' };
   int count = 50, i = 51, total = 0;
   count++;
   for (i = 0; i < count - 48; i++)
       notFun[i].homeScore = i + 1;
   notFun[i].awayScore = i + 1;
   for (i = 0; i < 100; i++) {
       total += notFun[i].homeScore + notFun[i].awayScore;
   }
   printf("Total Score: %i. \n", total);
   system("pause");
}

A. SOCCER is an array

B. SOCCER is an array of structs

C. SOCCER is a data type

D. SOCCER is not an array or a data type

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT