0
I want a table in form of array
I want answer quickly
2 Answers
+ 1
A table is best created by using a two-dimensional array. For example:
int array[][] = {
{1, 2, 3},
{4, 5, 6},
{7, 8, 9}
};
0
https://www.cs.uic.edu/~jbell/CourseNotes/C_Programming/Arrays.html
https://www.programiz.com/c-programming/examples/multiplication-table
https://www.tutorialspoint.com/cprogramming/c_arrays.htm
https://beginnersbook.com/2014/01/c-arrays-example/
https://beginnersbook.com/2014/01/2d-arrays-in-c-example/