answersLogoWhite

0


Best Answer

I recently studied a magic square. It is a square that when each row, diagonal, horizontally, or vertically is added up, it equals the same positive integer.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A magic square is a square array of positive integers such that the sum of each row column and?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you write a C program to find the sum of a given column in a 2D array?

Use the following function to find the sum of a given column in an array of integers: int sum_column (int** array, unsigned int rows, unsigned int columns, unsigned int column) { assert (column<columns); int accumulator int row; accumulator = 0; for (row=0; row<rows; ++row) { accumulator += array[row][column]; } return accumulator; }


What is Jagged Array in C?

A Jagged array is an array of arrays. You can initialize a jagged array as − int[][] scores = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}}; Where, scores is an array of two arrays of integers - scores[0] is an array of 3 integers and scores[1] is an array of 4 integers.


What is an associative array?

An associative array is one of a number of array-like data structures where the indices are not limited to integers.


What is the difference between numeric array and associative array?

Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values


Can an array be a single column of values?

Yes.


What is the definition of a square array?

A square array has the same number of columns and rows the array [1] is a square array (a trivial example) the array [1 0] [0 1] is a square array the array [1 0 0 0] [0 1 0 0] [0 0 1 0] [0 0 0 1] is a square array the array [1 0 0 0] [0 1 0 0] [0 0 1 0] is not a square array


Declare an array of 100 integers?

int array_name [100];


Array subscripts are always a large numbers b characters c negative values d integers?

d integers


What is latin square?

"[A] Latin square is an n × n array filled with n different symbols, each occurring exactly once in each row and exactly once in each column."Please see link.


What is squre array?

A square array is an array in which the number of rows is the same as the number of columns.


What is the definition of vlookup?

It is a function that means vertical lookup. You use it to search for a value in the first column of a table array and returns a value in the same row from another column in the table array.


What is square array?

It is an array with the same number of rows and columns.