C Standard Functions
const size_t BUF_SIZE = 100; // Input buffer size
char buffer[BUF_SIZE]; // A 100 byte input buffer
scanf_s("%s", buffer, BUF_SIZE); // Read a string
从各种来源读取数据,根据其解释并将format结果存储到给定位置。
1)从中读取数据 stdin
2)从文件流中读取数据 stream
3)从空终止的字符串中读取数据buffer。到达字符串的末尾等同于达到文件结束条件fscanf