printf (および他の多くの関数) がどのように機能するかを確認したいと思います。
私が書いた
#include <Windows.h>
#include <stdio.h>
int main()
{
printf("");
return 0;
}
main.c コードで、右クリック メニューの定義に移動します。
しかし、それは次のようなものを示しています
_Check_return_opt_ _CRTIMP int __cdecl printf(_In_z_ _Printf_format_string_ const char * _Format, ...);
#if __STDC_WANT_SECURE_LIB__
_Check_return_opt_ _CRTIMP int __cdecl printf_s(_In_z_ _Printf_format_string_ const char * _Format, ...);
#endif
printf の仕組みに関するヒントが見つかりません。
標準ライブラリの実装を学ぶ方法を教えてもらえますか?