Question

In C, I have a 2D array with 5 rows & 6 columns. I need to...

In C, I have a 2D array with 5 rows & 6 columns. I need to iterate through only the last row & print the contents of each element in that row. Any help in writing this would be great. Thanks.

0 0
Add a comment Improve this question Transcribed image text
Answer #1


#include <stdio.h>

int main() {
    int arr[5][6];
    int i, j;
    // nested for loop to initialize each element to its own row ID
    for (i = 0; i < 5; ++i) {
        for (j = 0; j < 6; ++j) {
            arr[i][j] = i;
        }
    }
    // printing last row
    for (j = 0; j < 6; ++j) {
        printf("%d ", arr[4][j]);
    }
    printf("\n");
    return 0;
}
Add a comment
Know the answer?
Add Answer to:
In C, I have a 2D array with 5 rows & 6 columns. I need to...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT