當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 putc()用法及代碼示例


C 中的 putc() 函數

putc() 函數定義在<stdio.h>頭文件。

原型:

    int putc(const char ch, FILE *filename);

參數: const char ch, FILE *filename

返回類型: int

函數的使用:

在文件處理中,通過putc()函數,我們將stdin中的字符寫入到輸入文件流中,並遞增文件位置指針。函數 putc() 的原型是int putc(const char* string, FILE *filename);

它返回一個整數值,它是一個無符號字符的轉換。如果發生錯誤,它還返回 EOF。每當有二進製文件檢查錯誤時,函數 ferror()

C 中的 putc() 示例

#include <stdio.h>
#include <stdlib.h>

int main()
{
    //Initialize the file pointer
    FILE* f;
    char ch;

    //Create the file for write operation
    f = fopen("includehelp.txt", "w");

    printf("Enter five character\n");
    for (int i = 0; i < 5; i++) {
        //take the characters from the users
        scanf("%c", &ch);
        //write back to the file
        putc(ch, f);
        //clear the stdin stream buffer
        fflush(stdin);
    }

    //close the file after write operation is over
    fclose(f);

    //open a file
    f = fopen("includehelp.txt", "r");
    printf("Write operation is over and file is reday for read operation\n");
    printf("\n...............print the characters..............\n\n");
    while (!feof(f)) {
        //takes the characters in the character array
        ch = getc(f);
        //and print the characters
        printf("%c\n", ch);
    }

    fclose(f);

    return 0;
}

輸出

putc() example in C language



相關用法


注:本文由純淨天空篩選整理自Souvik Saha大神的英文原創作品 putc() function in C language with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。