Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Matrizes e Arquivos


Cas.Felippe

Question

Sou um estudante da linguagem C e estou com um problema no seguinte código:

#include<stdio.h>
#include<stdlib.h>

int main()
{
    int matriz [3][3]= {1,2,3,4,5,6,7,8,9};
    int i,j;
    FILE *f;

    f= fopen("matriz.txt","wb");
    
    for(i=0;i<3;i++){
        for (j=0;j<3;j++){
            fprintf(f,"%d",matriz[i][j]);
        }
    fprintf(f,"\n");    
    }
    printf("Matriz escrita em arquivo com sucesso!!");

    fclose(f);
    return 0;
}

O problema é que aparece no arquivo "matriz.txt" isso: 123456789 e não isso:

123

456

789

Eu não sei em qual parte o programa está errado. Alguém poderia me ajuda a resolver esse problema

OBS: Não sei se é importante mas eu uso o Microsoft Visual C++ Express

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...