Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Latest commit

 

History

History

2021

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

2d vector syntax in cpp

// 2d array of int
int row = 10;
int column = 10;
int arr[row][column];


// same  for vector<int> type
vector<int> v[10][100];