printf 函数
头文件: stadio.h
原型: int printf(const char *format, ...);
format: 格式控制字符
...:可变参数列表
返回值:输出字符的数量
为什么format要用指针?
因为可能有很多格式
...是可变参数列表,用于实现变参函数。