Question
HELP ME ASAP!!! 1) Observe the following declaration: struct T { int A[10]; char j; }; Question: What is the maximum number of data can
HELP ME ASAP!!!
1) Observe the following declaration:
struct T{
int A[10];
char j;
};
Question: What is the maximum number of data can be hold by each member of structure T?
A. 1 data for member named A, and 1 data for member named j
B. 10 data for member named A and 1 data for member named j
C. 9 data for member named A and 1 data for member named j
Choose which of the following statements is a correct declaration of structure type?
A. struct Test { int test1, int test2, int totalTest};
B. Struct Test {int test1; int test2; int totalTest};
C. struct Test {int test1, test2, totalTest;};
D. struct Test{int test1; int test2; int totalTest}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started