Yamamoto's Laboratory

プログラム例

01: #include <stdio.h>
02: 
03: int main(void)
04: {
05:   FILE *ofile;
06: 
07:   ofile=fopen("name.txt","w");
08: 
09:   fprintf(ofile,"Akita National College of Technology\n");
10:   fprintf(ofile,"Departmant of Electrical and Computer Engineering\n");
11:   fprintf(ofile,"Masashi Yamamoto\n");
12: 
13:   fclose(ofile);
14: 
15:   return 0;
16: }

実行結果

このプログラムを実行すると,以下の文字が書かれた name.txt というファイルができあがる.作成したファイルをダブルクリックするか,less name.txtとするか,emacs name.txtとするなどして,ファイルの中身を確認せよ.

Akita National College of Technology
Departmant of Electrical and Computer Engineering
Masashi Yamamoto


no counter