'printf' Function

printf is not part of the C language; there is no input or output defined in C itself.

printf is just a useful function from the standard library of functions that are normally accessible to C programs.

The behaviour of printf is defined in the ANSI standard,(美国国家标准协会 American National Standards Institute))

however, so its properties should be the same with any compiler and
library that conforms to the standard.

原文地址:https://www.cnblogs.com/wjshan0808/p/3324113.html