You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It writes to C's FILE* stdout. We hacked the implementation of every libc to support this. The code is equivalent to
#include<fast_io.h>
#include<cstdio>intmain()
{
usingnamespace ::fast_io::io;print(::fast_io::c_io_observer{stdout},"Hello World\n");
//c_io_observer wraps the stdout to make fast_io works on stdio's FILE*.
}