1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
BARSIC [14]
3 years ago
12

Declare a typedef struct named jumper_t that will have four parts: character array name that is 16 in length, double array of tr

ies that is N_TRIES in length, double best_jump, double deviation 2. Write one line to declare an array variable, named jlist of the above struct type, with a length of ten. No initialization required.
Computers and Technology
1 answer:
Maurinko [17]3 years ago
6 0

Answer:

The typedef struct is as follows:

typedef struct jumper_t {

  char name[16];

  double tries[N_TRIES];

  double best_jump;

  double deviation;

} jumper_t;

The declaration of jlist is:

jumper_t jlist[10];

Explanation:

This defines  the typedef structure

typedef struct jumper_t {

The following declares the variables as stated in the question

<em>   char name[16]; </em>

<em>   double tries[N_TRIES]; </em>

<em>   double best_jump; </em>

<em>   double deviation; </em>

}

This ends the typedef definition

jumper_t;

(b) The declaration of array jlist is:

jumper_t jlist[10];

You might be interested in
Why is it preferable to code web pages in HTML format?
zaharov [31]

Answer:

Answer is "B. to apply general formatting rules".

Explanation:

The proper meaning of its initials is "HyperText Markup Language". That is why letter B is the correct answer, because general formatting rules may be applied to the use of HTML as it is used through programming in a variety of languages, such as Java or JavaScript, and more.

Hope this helped you:)

8 0
3 years ago
Read 2 more answers
Which is a good plan for backing up data?
IgorC [24]
A good plan for backing up data is to setup an automatic backup to an external drive or cloud based storage on a regular basis.
6 0
4 years ago
Dinah is using an I.D.E to write, modify, and save code. Which tool should she use?
iren [92.7K]
I th8nk she should use a source code editor.
3 0
3 years ago
Read 2 more answers
What do you call the number that is used as an index to pinpoint a specific element within an array?
Pie

Answer:

d. subscript

Explanation:

Although I believe "index" is a better term. The question already says it!

5 0
4 years ago
Choose all the answers that apply.
maxonik [38]
They form on the surface and cool more quickly having larger mineral crystals. just learned this aha
7 0
3 years ago
Other questions:
  • Write a program that generates a random number and asks the user to guess what the number is. If the user's guess is higher than
    6·1 answer
  • Choosing the “Quick Print” button will ____________.
    14·1 answer
  • The World Wide Web is a program that allows you to search for information on the Internet.
    11·1 answer
  • In a(n) ________ either one condition or some other condition must be met in order for an event to take place.
    11·1 answer
  • Consider the classes below: public class TestA { public static void main(String[] args) { ​ int x = 2; ​ int y = 20 ​ int counte
    6·1 answer
  • Write a Java program that prints out a 4x4 square (like the one below)
    11·1 answer
  • Which group contains the command to manually conduct a spell check ?
    9·1 answer
  • Cycle for science and technology<br>​
    14·1 answer
  • If you are going to analyze and interpret data, you need to do all of the following execept blank.
    12·1 answer
  • A computer professional's job involves analyzing computer systems for
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!