#include int **wypelnij(int *tab,int wart,int x,int y); { int i,j,*a; i=y; *a=tab; while(i--) { j=x; while(j--) { *a=wart; *a++; } } }