為什麼這篇strcpy意思鄉民發文收入到精華區:因為在strcpy意思這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者Ryan45758 (☺000Qryan45758)看板C_and_CPP標題[問題] 檔案處理...
編譯軟體 : Dev C++
問題一 :
試產生10個1~16之間的整數亂數,並將它寫入二進位檔"rand.bin"中。
問題一程式碼:
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
int main(void)
{
int i,rnd;
int f1;
char str[3];
f1=creat("C:\\Users\\ryan4\\Desktop\\習題選答\\chap12\\hw12_16\\rand.bin",O_CREAT|O_WRONLY|O_BINARY);
if(f1!=-1)
{
for(i=0;i<10;i++)
{
rnd=rand()%16+1;
strcpy(str,itoa(rnd,str,10));
write(f1,str,sizeof(str));
}
close(f1);
printf("檔案寫入完成!!\n");
}
else
printf("檔案開啟失敗!!\n");
system("pause");
return 0;
}
執行結果:
10 4 15 5 2 13 7 15 3 1
想請問char str[3]是什麼意思
問題二 : 修改上述程式碼,產生50個1~1000的整數亂數,並將它寫入純文字檔"rand.txt"中。
程式碼 :
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
int main(void)
{
int i,rnd;
int f1;
char str[3];
f1=creat("C:\\Users\\ryan4\\Desktop\\習題選答\\chap12\\hw12_16\\rand.txt",O_CREAT|O_WRONLY|O_TEXT);
if(f1!=-1)
{
for(i=0;i<50;i++)
{
rnd=rand()%1000+1;
strcpy(str,itoa(rnd,str,10));
write(f1,str,sizeof(str));
}
close(f1);
printf("檔案寫入完成!!\n");
}
else
printf("檔案開啟失敗!!\n");
system("pause");
return 0;
}
執行的錯誤結果:
名代眝W﹋鵄瞰
想請問為什麼會變一坨亂碼呢?
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 1.200.47.155
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1543840567.A.600.html
※ 編輯: Ryan45758 (1.200.47.155), 12/04/2018 04:48:36
※ 編輯: Ryan45758 (1.200.47.155), 12/04/2018 04:59:42