Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

To check if COVID Social Distancing is applied or not in a classroom, a 2-D array of characters can be used to represent seating in

image text in transcribed
To check if COVID Social Distancing is applied or not in a classroom, a 2-D array of characters can be used to represent seating in a classroom as in the following example table. The value 'X' in an element of the classroom array means that the seat is not occupied and any other value in an array element means that the seat is occupied. For example consider the following seating table A X H X n X x X I X e K b X J X E in the above table the element that violate the social distancing rule are H.n.9, I, E, K, E . Write a C function named covid_sd that checks if COVID Social Distancing is applied or not in a classroom. Your function must o accept exactly three parameters named: classroom, num_rows, and ist. The classroom parameter is a 2-D array of characters with 6 columns. This array represents the classroom seating. num rows is the number of rows in the 2D array Ist is a 1-D array of characters. The size of Ist is 6 * num rows. o store the values of each seat that violates the COVID Social Distancing rule in the Ist array return 0 if any seat violates the COVID Social Distancing rule and 1 otherwise O

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine M. Ricardo, Susan D. Urban, Karen C. Davis

4th Edition

1284231585, 978-1284231588

More Books

Students also viewed these Databases questions

Question

What are the Five Phases of SDLC? Explain each briefly.

Answered: 1 week ago

Question

How can Change Control Procedures manage Project Creep?

Answered: 1 week ago