codice:
for(i=0; i < n; ++i) {
  j=0;
  while(data[i][j]) {
    printf("%s", data[i][j]);
    ++j;
  }
}