C Program Functions with 2D Arrays Write a function named displayElements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space.   In the main function, write a program that asks for integer input to be assigned on a 3 x 3 array and call the function displayElements to print the contents on the next line. Input 1. Multiple lines containing integer each line Output R1C1: 1 R1C2: 2 R1C3: 3 R2C1: 4 R2C2: 5 R2C3: 6 R3C1: 7 R3C2: 8 R3C3: 9 1 2 3 4 5 6 7 8 9

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

C Program Functions with 2D Arrays

Write a function named displayElements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space.

 

In the main function, write a program that asks for integer input to be assigned on a 3 x 3 array and call the function displayElements to print the contents on the next line.

Input

1. Multiple lines containing integer each line

Output

R1C1: 1
R1C2: 2
R1C3: 3
R2C1: 4
R2C2: 5
R2C3: 6
R3C1: 7
R3C2: 8
R3C3: 9
1 2 3
4 5 6
7 8 9
2. Functions with 2D Arrays Practice II
by CodeChum Admin
Write a function named display Elements that takes a two-dimensional array, the size of its
rows and columns, then prints every element of a two-dimensional array. Separate every
row by a new line and every column by a space.
In the main function, write a program that asks for integer input to be assigned on a 3×3
array and call the function display Elements to print the contents on the next line.
Input
1. Multiple lines containing integer each line
Output
R1C1: 1
R1C2: 2
R1C3: 3
R2C1: 4
R2C2: 5
R2C3: 6
R3C1: 7
R3C2: 8
R3C3: 9
123
456
789
main.c
1
> + 16
с
Test Cases
Constraints
O Constraint 1
This code must call the function inside the main
Test Cases
O Test Case 1
Your Output
No Output
Expected Output
RIC1: 0
R1C2: 2
RIC3: 4
R2C1: 6
R2C2: B
R2C3: 1
R3C1: 3
R3C2: 5
R3C3: 7
924
681
357
Transcribed Image Text:2. Functions with 2D Arrays Practice II by CodeChum Admin Write a function named display Elements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space. In the main function, write a program that asks for integer input to be assigned on a 3×3 array and call the function display Elements to print the contents on the next line. Input 1. Multiple lines containing integer each line Output R1C1: 1 R1C2: 2 R1C3: 3 R2C1: 4 R2C2: 5 R2C3: 6 R3C1: 7 R3C2: 8 R3C3: 9 123 456 789 main.c 1 > + 16 с Test Cases Constraints O Constraint 1 This code must call the function inside the main Test Cases O Test Case 1 Your Output No Output Expected Output RIC1: 0 R1C2: 2 RIC3: 4 R2C1: 6 R2C2: B R2C3: 1 R3C1: 3 R3C2: 5 R3C3: 7 924 681 357
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education