fmt 는 format을 줄여서 표현한 부분이다. Formatted I/O with functions 이고 대표적으로 printf 와 scanf 가 있다. Variadic function이란 가변 함수란 의미이다. 정의가 되어 있는 않는 인수를 가지고 함수를 만들수 있다는 의미이다. printf 가 해당하는 함수 이다. A variadic function is a function of indefinite arguments or operands. C 언어에서는 stdarg.h header파일을 통해서 api를 사용할 수 있다. The stdarg.h is a header in the C standard library of the C programming language that allows function..