Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

only in c code please not c++ or anything To check if COVID Social Distancing is applied or not in a classroom, a 2-D array

image text in transcribed

only in c code please not c++ or anything

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. n For example consider the following seating table X H X 9 I X b X J e X K E X in the above table the element that violate the social distancing rule are H.n,q, I, , KE a . Write a C function named covid_sd that checks if COVID Social Distancing is applied or not in a classroom. Your function must 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 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 . . * num TOWS

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

Database Concepts

Authors: David Kroenke

4th Edition

0136086535, 9780136086536

More Books

Students also viewed these Databases questions

Question

How do Dimensional Database Models differ from Relational Models?

Answered: 1 week ago

Question

What type of processing do Relational Databases support?

Answered: 1 week ago

Question

Describe several aggregation operators.

Answered: 1 week ago