I need to print out asterisks for equal amount of value in this programm,but i'm kinda stuck with it.I guess i need another for loop or maybe not :).Anyway any suggestions?Thanks
#include <iostream>
#include <array>
using namespace std;
int main()
{
int i,j;
const int row=3;
const int col=2;
int array[row][col] = {2, 5, 6, 7, 7, 11};