Horje
size of a matrix using vector c++ Code Example
2d vector
#include <bits/stdc++.h>
using namespace std;
int main() 
{
  int rows = 2;
  int cols = 2;
  int val = 1;
  vector< vector<int> > v(rows, vector<int> (cols, val));  /*creates 2d vector “v[rows][cols]” and initializes all elements to “val == 1” (default value is 0)*/
  v[0][0] = 5;
  v[1][1] = 4;
  cout << v[0][0] << endl; //Output: 5cout << v[1][0] << endl; //Output: 1return 0;}
size of a matrix using vector c++
// finding size of a square matrix
myVector[0].size();




Cpp

Related
size of stack in c++ Code Example size of stack in c++ Code Example
c++ dll exports Code Example c++ dll exports Code Example
map in c Code Example map in c Code Example
migration meaning Code Example migration meaning Code Example
word equation numbers Code Example word equation numbers Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10