Question:

I want source code in c for this program

by  |  earlier

0 LIKES UnLike

My question is :

15 8 1 24 17

16 14 7 5 23

22 20 13 6 4

3 21 19 12 10

9 2 25 18 11

i want source code with array .

you should have a array,for example “int number[3][3]”

 Tags:

   Report

1 ANSWERS


  1. It's done like this:

    int number[4][4]={

    {10, 15, 20, 25},

    {25, 30, 35, 40},

    {45, 50, 55, 60},

    {65, 70, 75, 80}

    };

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.