5. Flexing My 2D by CodeChum Admin I'm a pro-grammer and I want to flex to the world my 2D arrays in an extraordinary way! Ha-ha-ha! Instructions: In the code editor, you are provided with an initial...


5. Flexing My 2D
by CodeChum Admin


I'm a pro-grammer and I want to flex to the world my 2D arrays in an extraordinary way! Ha-ha-ha!



Instructions:


In the code editor, you are provided with an initial code in the main() that asks the user for the elements of a 5x5 2D array and a call to a function called flex2D(). Do not edit anything in the main() function.
Your task is to implement the function definition of the flex2D() with the following details:
Return type - void
Function name - flex2D
Parameters - int[][5]
Definition - prints the elements of each of the row twice.
Input


1. Elements of a 5x5 2D array


Output


Enter the elements:
1 9 2 3 4
8 2 4 0 1
0 3 1 3 4
9 2 3 1 5
8 8 1 7 6


Flex:
1 9 2 3 4
1 9 2 3 4
8 2 4 0 1
8 2 4 0 1
0 3 1 3 4
0 3 1 3 4
9 2 3 1 5
9 2 3 1 5
8 8 1 7 6
8 8 1 7 6


Output<br>main.c<br>< ><br>+ c<br>Test Cases<br>1<br>#include<stdio.h><br>Enter the elements:<br>3<br>void flex2D(int[][5]);<br>ÇE Run Tests<br>1.9-2-3-4<br>4<br>8-2-4 0 1<br>5- int main(void) {<br>int matrix[5][5];<br>e- 3-1-3-4<br>7<br>Test Case<br>9-2-3-1.5<br>printf(

Extracted text: Output main.c <> + c Test Cases 1 #include Enter the elements: 3 void flex2D(int[][5]); ÇE Run Tests 1.9-2-3-4 4 8-2-4 0 1 5- int main(void) { int matrix[5][5]; e- 3-1-3-4 7 Test Case 9-2-3-1.5 printf("Enter the elements:\n"); for(int row = 0; row < 5;="" row++)="" {="" for(int="" col="0;" col="">< 5;="" col++)="" {="" scanf("%d",="" &matrix[row][col]);="" }="" }="" 8="" 1="" 8.8="" 17="" 6="" 9="" 10="" flex:="" 11="" 1.9-="" 2-3-4="" 12="" test="" case="" 13="" 2="" 1.9="" 2="" 3-4="" 14="" 8-2-4="" 0="" 1="" 15="" printf("\nflex:\n");="" 8-2-4="" 0="" 1="" 16="" e-="" 3-1.3-4="" 17="" flex2d(matrix);="" test="" a.="" 3.1.3.4="" 18="" o="" case="" hidden="" 19="" return="" 0;="" 20="" }="" 3="" score:="" 0/10="" 21="" 22="" todo:="" implement="" the="" function="">
8-2 4 0 1<br>main.c<br>+<br>Test Cases<br>e 3 1.3-4<br>9.2 3 15<br>4<br>5- int main(void) {<br>int matrix[5][5];<br>8-8 1-7-6<br>CE Run Tests<br>6<br>7<br>Flex:<br>printf(
"/>
Extracted text: 8-2 4 0 1 main.c + Test Cases e 3 1.3-4 9.2 3 15 4 5- int main(void) { int matrix[5][5]; 8-8 1-7-6 CE Run Tests 6 7 Flex: printf("Enter the elements:\n"); for(int row = 0; row for(int col = 0; col < 5;="" col++)="" {="" scanf("%d",="" &matrix[row][col]);="" }="" }="" 1.9="" 2="" 3="" 4="" 5;="" row++)="" {="" test="" case="" 10="" 1.9="" 2-3-4="" 11="" 1="" 8-2-4="" 0="" 1="" 12="" 8.="" 2-4="" 0="" 1="" 13="" e="" 3="" 13-4="" 14="" e-="" 3-1-3-4="" 15="" printf("\nflex:\n");="" test="" case="" 16="" 2="" 9="" 2-3-1-5="" 17="" flex2d(matrix);="" 9="" 2-3-1-5="" 18="" 8.8="" 1.7-6="" 19="" return="" 0;="" 20="" }="" test="" 8-8="" 1.7-6="" 21="" o="" case="" hidden="" todo:="" implement="" the="" function="" definition="" 23="" -="" void="" flex2d(int="" arro[5])="" {="" 22="" 3="" score:="" 0/10="" 24="" 25="" }="">
Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here