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
lukranit [14]
3 years ago
6

You are given a 6x8 (6 rows, 8 columns) array of integers, x, already initialized and three integer variables: max, i and j. Wri

te the necessary code so that max will have the largest value in the array x.
Computers and Technology
1 answer:
Aneli [31]3 years ago
5 0

Answer:

The code is mentioned below.

Explanation:

This code is written in C.

Assuming that an array of 6 by 8 is already initialized and stored in a vector

x[6][8]

which will be called or referred in program by:

x [i] [j]

Alongwith the array the variables i j and max will be initialized as integers.

CODE:

int i,j,max;

max=0;

for(i=0;i<6;i++)

{

for(j=0;j<6;j++)

{

if(max>x[i][j])

max = x[i][j];

}

}

This code will check each and every entry of 6 by 8 array and place the largest value in max.

You might be interested in
Due dates is the final date an assignment will be accepted. Plan ahead to ensure should you face difficulty with the assignment
Fittoniya [83]

Sounds very important.

7 0
2 years ago
Read 2 more answers
"You have created a Word document named apple.docx using Microsoft Word. What type of a file is apple.docx ? Select all that app
lakkis [162]

The type of a file that is in  apple.docx is Executable program file.

<h3>What is an executable file?</h3>

An executable file (EXE file) is known to be a type of computer file that has a encoded sequence of codes or instructions that the system often work on  when the user is said to clicks the file icon.

Note that Executable files are known to have an EXE file extension, and there are a lot of other executable file formats. The type of a file that is in  apple.docx is Executable program file.

Learn more about Word document from

brainly.com/question/25567167

8 0
2 years ago
What are 25 items that trees made?
alexandr1967 [171]

Answer:

(things,can't think of more

.......)

  • paper
  • charcoal
  • doors
  • chairs
  • jewelry
  • wood frames
  • broom handles
  • furniture made with wood
6 0
2 years ago
Read 2 more answers
How many apostrophes or quotation marks in a row should you use to begin and end a multi-line string?
const2013 [10]
Answer is 4 (One)
There should be so many apostrophes or quotation marks in a row .
6 0
3 years ago
Read 2 more answers
One can find mountain ranges, elevation levels, and deserts on a physical map.
prohojiy [21]

Answer:

True

Explanation:

There is a quizlet about this that I took

4 0
3 years ago
Read 2 more answers
Other questions:
  • You are using Windows 10 and you have created a file with called “my text” in notepad with a .txt extension type. You need to ch
    13·1 answer
  • In a program called Nature's Notebook, citizen volunteers make and report observations about seasonal changes in plants and anim
    15·1 answer
  • What do you call a set of programs?
    7·1 answer
  • Social media is a type of ___________ ccommunication (type either push or pull for your response).
    8·2 answers
  • To create a pull quote, how should a user format the text?
    6·2 answers
  • Which of the following statements is TRUE of the information systems (IS) department? A. The operations group monitors user expe
    8·1 answer
  • How did the internet originate??​
    12·1 answer
  • Does anyone know what i did wrong?
    13·1 answer
  • A trackerball is a pointing device
    9·1 answer
  • If you had tickets for the concert and saw these alerts, what should you do?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!