affichage

This commit is contained in:
cyjullien1
2024-12-12 11:40:21 +01:00
parent 509863f591
commit 15e9a5ce4f

View File

@@ -1 +1,17 @@
#include <stdio.h>
void screenDisplay( unsigned short int **tab,int size)
{
for(int i=0;i<size;++i)
{
for(int j=0;j<size;++j)
{
printf("%hu ",tab[i][j]);
}
}
}