Array Operations - Array Problem

Creation of 1-D Array

The basic syntax of creation of 1-D array is.

int var_name[size];
basic of Array
  
      
  

2-D Array


2-D array also know as matrix and The basic syntax of creation of 2-D array is.

int var_name[size][size];

...

  
      Hi