write a program in pseudocode to set each entry in row 1 to
write a program in pseudocode to set each entry in row 1 to one in a 100 by 100 boolean matrix A(i,j)
Solution
//c++ code
#include <iostream>
using namespace std;
int main() {
// your code goes here
int arr[100][100],i,j;
i=0;
for (j=0;j<100;j++)
{
arr[i][j]=1;
cout<<arr[i][j];
}
return 0;
}
