You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
352 B

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <time.h>
  5. #include <stdbool.h>
  6. #include "labyrinth.h"
  7. int printlabyrinth(lab laby, int hoehe, int breite){
  8. for(int i = 0; i < hoehe; i++){
  9. for(int j = 0; j < breite; j++){
  10. printf("%c ", laby[i][j]);
  11. }
  12. printf("\n");
  13. }
  14. return 0;
  15. }