📜  stdio.h - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:40.089000             🧑  作者: Mango

代码示例1
// It stands for "standard input-output" header, a C standard library.
// These are it's 4 most used functions:
    printf(); // Function used to show data on screen.

    scanf(); // Function used to get data from user.

    fprintf(); // Function used to press data in a file.

    fscanf(); // Function used to read data from a file.

// Discover more: https://en.wikipedia.org/wiki/C_file_input/output