Jump to content
Fórum Script Brasil
  • 0

Fwrite


rcabreu

Question

eu estou usando o fwrite para escrever várias strings em um arquivo.

eu queria q cada string aparecesse em uma linha, mas ele semrpe escreve as strings uma atrás da outra. já tentei colocar um \0 no final de cada string mas não deu certo. Como posso fazer para conseguir escrever corretamente?

o código q estou usando vai aqui embaixo

for(i = 0; i < 4; i++)

{

RandomString(STRING_SIZE, sRandomStr);

sRandomStr[sTRING_SIZE + 1] = '\0';

fwrite(sRandomStr, strlen(sRandomStr), 1, fPassword);

};

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Opa!

Faça o seguinte:

strcat( sRandomStr, "\n" );
Isso vai adicionar o caractere "\n" (nova linha) no final da sua string. DICA: use "fprintf", é mais simples. Por exemplo, seu código ficaria assim:
...

fprintf( fPassword, "%s\n", sRandomStr );

...

Isso eliminaria a necessidade da chamada a "strcat".

Até mais!

Link to comment
Share on other sites

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
      651.9k
×
×
  • Create New...