include
include
int main(){ char mapa [12][24+1];
FILE* f; f = fopen("mapa.txt", "r"); if(f == 0){ printf("Erro na leitura do mapa\n"); } for(int i = 0; i < 12; i++){ fscanf(f, "%s", mapa[i]);
} for(int i = 0 ; i < 12; i++){ printf("%s\n", mapa[i]); } fclose(f); }
mapa.txt (COPIE E COLE NO SEU CÓDIGO)
|------------------| | . . . . __ | | | - . . | . | - | | | |. . | . | | | | |- . . | . |_- | | | \ . . | . . . | | | . . . | @ | . | | | . . .| . | . | | . . . . . . . . | | . ----------- . | | . . . . . . . . | |------------------|