ファイル data01.in から読み込んだ文字列を逆順に data03.out に書き出すプログラムを作りたいのですが、書き出したファイルの最初のところに改行が入ってしまいます。どうすればここを解決できますか?
data01.in
1A Turing machine is a mathematical model of computation that defines an abstract machine,[1] which manipulates symbols on a strip of tape according to a table of rules.[2] 2Despite the model's simplicity, given any computer algorithm, a Turing machine capable of simulating that algorithm's logic can be constructed.[3] 3"Turing machine" from Wikipedia(https://en.wikipedia.org/wiki/Turing_machine). (Access date: 2020/10/01)
data03.out
1//ここに改行がある 2)10/01/0202 :etad sseccA( .)enihcam_gniruT/ikiw/gro.aidepikiw.ne//:sptth(aidepikiW morf "enihcam gniruT" 3]3[.detcurtsnoc eb nac cigol s'mhtirogla taht gnitalumis fo elbapac enihcam gniruT a ,mhtirogla retupmoc yna nevig ,yticilpmis s'ledom eht etipseD 4]2[.selur fo elbat a ot gnidrocca epat fo pirts a no slobmys setalupinam hcihw ]1[,enihcam tcartsba na senifed taht noitatupmoc fo ledom lacitamehtam a si enihcam gniruT A
source
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 5 #define MAX 1000 6 7 int main() 8 { 9 char in_filename[] = "data01.in"; 10 11 char out_filename[] = "data03.out" 12 ; 13 FILE *fpin, *fpout; 14 15 char buf[MAX]; 16 int c; 17 int n; 18 int i; 19 20 /* 入力ファイルを開く。 */ 21 if ((fpin = fopen(in_filename, "r")) == NULL) 22 { 23 printf("Failed to open: %s\n", in_filename); 24 exit(1); 25 } 26 27 /* 出力ファイルを開く。 */ 28 if ((fpout = fopen(out_filename, "w")) == NULL) 29 { 30 printf("Failed to open: %s\n", out_filename); 31 fclose(fpin); 32 exit(2); 33 } 34 35 36 /* バッファの最大数までデータを読み込む */ 37 for (n = 0; n < MAX; ++n) 38 { 39 if ((c = fgetc(fpin)) == EOF) 40 break; 41 42 buf[n] = (char)c; /* char へのキャストを忘れない。 */ 43 } 44 45 /* バッファが最大数まで到達してもなおEOFにならない場合はバッファあふれとしてエラー処理する。 46 */ 47 if (n == MAX) 48 { 49 printf("Buffer overflow !\n"); 50 exit(3); 51 } 52 53 /* バッファの内容を出力する。 */ 54 for (i = n-1; i >=0; --i) 55 { 56 fputc(buf[i], fpout); 57 } 58 59 /* 開いた入出力ファイルをそれぞれ忘れずに閉じる。 */ 60 fclose(fpout); 61 fclose(fpin); 62 63 return 0; 64 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。