putw

[機能]

  int 型のバイナリ値をストリームへ出力します

[形式]
#include <stdio.h>

int putw(int w, FILE *stream)
	w      : 書き込む整数
	stream : FILE 構造体へのポインタ		
[使用例]

  1. putc,putw,getc,getw の比較
    #include <stdio.h>
    
    int main()
    {
    	int k1 = 0x61626364;   /* "abcd" */
    	int k2;
    	char c1 = 'a';         /* 0x61 */
    	char c2 = 'b';         /* 0x62 */
    	char c3, c4;
    	FILE *stream;
    /*
    		 テストデータをファイルへ出力
    */
    	printf("k1 0x%8x c1 %c c2 %c\n", k1, c1, c2);
    
    	stream = fopen("data", "w");
    
    	putc(c1, stream);
    	putc(c2, stream);
    
    	putw(k1, stream);
    
    	fclose(stream);
    /*
    		 データの読込
    */
    	stream = fopen("data", "r");
    
    	k2     = getw(stream);
    
    	c3     = (char)getc(stream);
    	c4     = (char)getc(stream);
    
    	printf("k2 0x%8x c3 %c c4 %c\n", k2, c3, c4);
    
    	fclose(stream);
    
    	return 0;
    }
    			
    (出力)
    k1 0x61626364 c1 a c2 b
    k2 0x63646261 c3 b c4 a			
[参照]

getc, getchar, gets, putc, putchar, puts, fgetc, fgets, fputc, fputs, getw

菅沼ホーム 本文目次 演習問題解答例 付録目次 索引