/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.cpp * Author: dell * * Created on 12 Δεκεμβρίου 2018, 5:40 μμ */ #include using namespace std; int** create2dTable(int lns, int clmns) { int **t = new int*[lns]; for (int i=0; i