What is the error here?

'#include <'iostream>

using namespace std;

void wave(int n, int m, int a[10][10]){

 for(int i = 0; i<m; i++){

      if (i%2) for(int j = n-1; j>=0; j--) cout<<a[j][i]<<", ";

      else for(int j = 0; j<n; j++) cout<<a[j][i]<<", ";

 }

 cout<<"END";

}

int main(){

 int n,m;
 cin>> m>>n;
 int a[10][10];
 for(int i = 0;i<m;i++)
      for(int j = 0; j<n;j++)
           cin>> a[i][j];
 wave(n,m,a);

}

there is no issue in the include statement ’ got entered by mistake

hi @rudragarg09006_4fa678534132a743, updated

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.