Skip to content

Instantly share code, notes, and snippets.

@tarunasolanki
tarunasolanki / norm_of_matrix_cpp
Created August 21, 2019 14:28
Program To Find Norm Of Matrix In 2D Array
#include <iostream>
#include <math.h>
using namespace std;
int main()
{ int a[3][3],i , j ,sum ,s ;
cout << "Norm matrix in 2D array " << endl ;
cout << "Enter Array Elements : " << endl ;
// loop for taking input of array elements